From 679a0d62f248d5c461ed838f07e8343b09f8248b Mon Sep 17 00:00:00 2001 From: Erica Fischer Date: Sun, 21 Jan 2024 12:09:05 -0800 Subject: [PATCH] Make feature ordering cooperate with --retain-points-multiplier (#188) * Make feature ordering cooperate with --retain-points-multiplier * Forgot to check in the actual code changes??? * Sort within each multiplier cluster as well as between clusters * Correct description of behavior in changelog * Drag original feature sequence along in megatiles for post-filter sort * Plumb the preserve-input-order flag through overzoom * Sort in overzoom if requested * Use within-tile input sequence numbers, not global sequence numbers * Documentation * Reverse direction of search to prevent accidental skipping * Add some comments about converting between attribute representations --- CHANGELOG.md | 4 + Makefile | 6 + README.md | 2 +- clip.cpp | 32 +- geometry.hpp | 4 +- man/tippecanoe.1 | 2 + mvt.cpp | 46 + mvt.hpp | 4 + overzoom.cpp | 33 +- read_json.cpp | 4 + serial.cpp | 14 +- serial.hpp | 4 + ...er_2_--extend-zooms-if-still-dropping.json | 23686 +++++------ ...nt%3asum_--retain-points-multiplier_5.json | 34552 ++++++++-------- .../out/-zg_--retain-points-multiplier_2.json | 23686 +++++------ ...etain-points-multiplier_10_-d8_-yNAME.json | 288 +- ...n-points-multiplier_3_--order-by_NAME.json | 206 + ...s-multiplier_3_--preserve-input-order.json | 206 + tests/pbf/0-0-0-filter-mult-order.pbf.json | 21 + tests/pbf/0-0-0-pop.pbf | Bin 74805 -> 75519 bytes tile-join.cpp | 2 +- tile.cpp | 111 +- version.hpp | 2 +- 23 files changed, 41781 insertions(+), 41134 deletions(-) create mode 100644 tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--order-by_NAME.json create mode 100644 tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--preserve-input-order.json create mode 100644 tests/pbf/0-0-0-filter-mult-order.pbf.json diff --git a/CHANGELOG.md b/CHANGELOG.md index b8ae99a17..94fac991b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 2.41.1 + +* Make --preserve-input-order, --order-by, --order-descending-by, --order-smallest-first, and --order-largest-first cooperate with --retain-points-multiplier. The clusters will be ordered by their lead feature in the specified sequence. The other features in each cluster will continue to be physically near the lead feature, but ordered as specified within the cluster. + # 2.41.0 * Add Felt-style expression support for -j feature filters diff --git a/Makefile b/Makefile index c7694043a..36bba20b1 100644 --- a/Makefile +++ b/Makefile @@ -310,6 +310,12 @@ overzoom-test: tippecanoe-overzoom ./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 + # Filtering with multiplier and preserve-input-order + # 243 features in the source tile tests/pbf/0-0-0-pop.pbf + ./tippecanoe-overzoom -y NAME -y SCALERANK -j'{"*":["NAME","cn","e"]}' -m --preserve-input-order -o tests/pbf/0-0-0-filter-mult-order.pbf tests/pbf/0-0-0-pop.pbf 0/0/0 0/0/0 + ./tippecanoe-decode tests/pbf/0-0-0-filter-mult-order.pbf 0 0 0 > tests/pbf/0-0-0-filter-mult-order.pbf.json.check + cmp tests/pbf/0-0-0-filter-mult-order.pbf.json.check tests/pbf/0-0-0-filter-mult-order.pbf.json + rm tests/pbf/0-0-0-filter-mult-order.pbf tests/pbf/0-0-0-filter-mult-order.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 diff --git a/README.md b/README.md index d10277c09..a7472d665 100644 --- a/README.md +++ b/README.md @@ -996,4 +996,4 @@ reads tile `inz/inx/iny` of `in.mvt.gz` and produces tile `outz/outx/outy` of `o * `-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. - + * `--preserve-input-order`: Restore a set of filtered features to its original input order diff --git a/clip.cpp b/clip.cpp index eeae40a53..1c2b34fe6 100644 --- a/clip.cpp +++ b/clip.cpp @@ -8,6 +8,7 @@ #include "compression.hpp" #include "mvt.hpp" #include "evaluator.hpp" +#include "serial.hpp" static std::vector> clip_poly1(std::vector> &geom, long long minx, long long miny, long long maxx, long long maxy, @@ -756,7 +757,7 @@ static std::vector> clip_poly1(std::vector const &keep, bool do_compress, std::vector> *next_overzoomed_tiles, - bool demultiply, json_object *filter) { + bool demultiply, json_object *filter, bool preserve_input_order) { mvt_tile tile; try { @@ -770,7 +771,7 @@ 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, demultiply, filter); + return overzoom(tile, oz, ox, oy, nz, nx, ny, detail, buffer, keep, do_compress, next_overzoomed_tiles, demultiply, filter, preserve_input_order); } struct tile_feature { @@ -780,6 +781,7 @@ struct tile_feature { unsigned long long id; std::vector tags; mvt_layer const *layer; + size_t seq = 0; }; void feature_out(tile_feature const &feature, mvt_layer &outlayer, std::set const &keep) { @@ -799,6 +801,8 @@ void feature_out(tile_feature const &feature, mvt_layer &outlayer, std::setkeys[feature.tags[i]]) != keep.end()) { outlayer.tag(outfeature, feature.layer->keys[feature.tags[i]], feature.layer->values[feature.tags[i + 1]]); @@ -809,10 +813,16 @@ void feature_out(tile_feature const &feature, mvt_layer &outlayer, std::set const &keep, bool do_compress, std::vector> *next_overzoomed_tiles, - bool demultiply, json_object *filter) { + bool demultiply, json_object *filter, bool preserve_input_order) { mvt_tile outtile; for (auto const &layer : tile.layers) { @@ -832,15 +842,20 @@ std::string overzoom(mvt_tile tile, int oz, int ox, int oy, int nz, int nx, int for (auto feature : layer.features) { bool flush_multiplier_cluster = false; if (demultiply) { - for (size_t i = 0; i + 1 < feature.tags.size(); i += 2) { + for (ssize_t i = feature.tags.size() - 2; i >= 0; 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; } } + + if (layer.keys[feature.tags[i]] == "tippecanoe:retain_points_multiplier_sequence") { + mvt_value v = layer.values[feature.tags[i + 1]]; + feature.seq = atoll(mvt_value_to_serial_val(v).s.c_str()); + feature.tags.erase(feature.tags.begin() + i, feature.tags.begin() + i + 2); + } } } else { flush_multiplier_cluster = true; @@ -937,6 +952,7 @@ std::string overzoom(mvt_tile tile, int oz, int ox, int oy, int nz, int nx, int tf.id = feature.id; tf.tags = feature.tags; tf.layer = &layer; + tf.seq = feature.seq; pending_tile_features.push_back(tf); } @@ -946,6 +962,10 @@ std::string overzoom(mvt_tile tile, int oz, int ox, int oy, int nz, int nx, int pending_tile_features.clear(); } + if (preserve_input_order) { + std::sort(outlayer.features.begin(), outlayer.features.end(), preservecmp); + } + if (outlayer.features.size() > 0) { outtile.layers.push_back(outlayer); } @@ -965,7 +985,7 @@ std::string overzoom(mvt_tile tile, int oz, int ox, int oy, int nz, int nx, int std::string child = overzoom(outtile, nz, nx, ny, nz + 1, nx * 2 + x, ny * 2 + y, detail, buffer, keep, false, NULL, - demultiply, filter); + demultiply, filter, preserve_input_order); if (child.size() > 0) { next_overzoomed_tiles->emplace_back(nx * 2 + x, ny * 2 + y); } diff --git a/geometry.hpp b/geometry.hpp index 70c3c6bc8..ed4b6bd9c 100644 --- a/geometry.hpp +++ b/geometry.hpp @@ -102,11 +102,11 @@ 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, - bool demultiply, json_object *filter); + bool demultiply, json_object *filter, bool preserve_input_order); 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, - bool demultiply, json_object *filter); + bool demultiply, json_object *filter, bool preserve_input_order); #endif diff --git a/man/tippecanoe.1 b/man/tippecanoe.1 index 7d9b5ae7f..d280cd94e 100644 --- a/man/tippecanoe.1 +++ b/man/tippecanoe.1 @@ -1266,4 +1266,6 @@ reads tile \fB\fCinz/inx/iny\fR of \fB\fCin.mvt.gz\fR and produces tile \fB\fCou \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. +.IP \(bu 2 +\fB\fC\-\-preserve\-input\-order\fR: Restore a set of filtered features to its original input order .RE diff --git a/mvt.cpp b/mvt.cpp index 91062eca4..b693a7177 100644 --- a/mvt.cpp +++ b/mvt.cpp @@ -14,6 +14,7 @@ #include "protozero/pbf_writer.hpp" #include "milo/dtoa_milo.h" #include "errors.hpp" +#include "serial.hpp" mvt_geometry::mvt_geometry(int nop, long long nx, long long ny) { this->op = nop; @@ -620,6 +621,11 @@ bool is_unsigned_integer(const char *s, unsigned long long *v) { return 1; } +// This converts a serial_val-style attribute value to an mvt_value +// to store in a tile. If the value is numeric, it tries to choose +// the type (int, uint, sint, float, or double) that will give the +// smallest representation in the tile without losing precision, +// regardless of how the value was represented in the original source. mvt_value stringified_to_mvt_value(int type, const char *s) { mvt_value tv; @@ -675,3 +681,43 @@ mvt_value stringified_to_mvt_value(int type, const char *s) { return tv; } + +// This converts a mvt_value attribute value from a tile back into +// a serial_val for more convenient parsing and comparison without +// having to handle all of the vector tile numeric types separately. +// All numeric types are given the type mvt_double in the serial_val +// whether the actual value is integer or floating point. +serial_val mvt_value_to_serial_val(mvt_value const &v) { + serial_val sv; + + if (v.type == mvt_string) { + sv.type = mvt_string; + sv.s = v.string_value; + } else if (v.type == mvt_float) { + sv.type = mvt_double; + sv.s = milo::dtoa_milo(v.numeric_value.float_value); + } else if (v.type == mvt_double) { + sv.type = mvt_double; + sv.s = milo::dtoa_milo(v.numeric_value.double_value); + } else if (v.type == mvt_int) { + sv.type = mvt_double; + sv.s = std::to_string(v.numeric_value.int_value); + } else if (v.type == mvt_uint) { + sv.type = mvt_double; + sv.s = std::to_string(v.numeric_value.uint_value); + } else if (v.type == mvt_sint) { + sv.type = mvt_double; + sv.s = std::to_string(v.numeric_value.sint_value); + } else if (v.type == mvt_bool) { + sv.type = mvt_bool; + sv.s = v.numeric_value.bool_value ? "true" : "false"; + } else if (v.type == mvt_null) { + sv.type = mvt_null; + sv.s = "null"; + } else { + fprintf(stderr, "unhandled mvt_type %d\n", v.type); + exit(EXIT_IMPOSSIBLE); + } + + return sv; +} diff --git a/mvt.hpp b/mvt.hpp index 696e25359..c848cf6f1 100644 --- a/mvt.hpp +++ b/mvt.hpp @@ -49,6 +49,7 @@ struct mvt_feature { unsigned long long id = 0; bool has_id = false; bool dropped = false; + size_t seq = 0; // used for ordering in overzoom mvt_feature() { has_id = false; @@ -122,4 +123,7 @@ mvt_value stringified_to_mvt_value(int type, const char *s); bool is_integer(const char *s, long long *v); bool is_unsigned_integer(const char *s, unsigned long long *v); + +struct serial_val; +serial_val mvt_value_to_serial_val(mvt_value const &v); #endif diff --git a/overzoom.cpp b/overzoom.cpp index c12cdefce..e2944a1fd 100644 --- a/overzoom.cpp +++ b/overzoom.cpp @@ -15,6 +15,7 @@ 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; +bool preserve_input_order = false; std::set keep; @@ -28,7 +29,31 @@ int main(int argc, char **argv) { int i; const char *outfile = NULL; - while ((i = getopt(argc, argv, "y:d:b:o:mj:")) != -1) { + struct option long_options[] = { + {"include", required_argument, 0, 'y'}, + {"full-detail", required_argument, 0, 'd'}, + {"buffer", required_argument, 0, 'b'}, + {"output", required_argument, 0, 'o'}, + {"filter-points-multiplier", no_argument, 0, 'm'}, + {"feature-filter", required_argument, 0, 'j'}, + {"preserve-input-order", no_argument, 0, 'o' & 0x1F}, + + {0, 0, 0, 0}, + }; + + std::string getopt_str; + for (size_t lo = 0; long_options[lo].name != NULL; lo++) { + if (long_options[lo].val > ' ') { + getopt_str.push_back(long_options[lo].val); + + if (long_options[lo].has_arg == required_argument) { + getopt_str.push_back(':'); + } + } + } + + int option_index = 0; + while ((i = getopt_long(argc, argv, getopt_str.c_str(), long_options, &option_index)) != -1) { switch (i) { case 'y': keep.insert(optarg); @@ -54,6 +79,10 @@ int main(int argc, char **argv) { filter = optarg; break; + case 'o' & 0x1F: + preserve_input_order = true; + break; + default: fprintf(stderr, "Unrecognized flag -%c\n", i); usage(argv); @@ -108,7 +137,7 @@ int main(int argc, char **argv) { 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); + std::string out = overzoom(tile, oz, ox, oy, nz, nx, ny, detail, buffer, keep, true, NULL, demultiply, json_filter, preserve_input_order); fwrite(out.c_str(), sizeof(char), out.size(), f); fclose(f); diff --git a/read_json.cpp b/read_json.cpp index 166df57d8..a46b15012 100644 --- a/read_json.cpp +++ b/read_json.cpp @@ -116,6 +116,10 @@ void parse_geometry(int t, json_object *j, drawvec &out, int op, const char *fna } } +// This is used to convert a JSON attribute value into a serial_val-style +// type and stringified value. All numeric values, even if they are integers, +// even integers that are too large to fit in a double but will still be +// stringified with their original precision, are recorded here as mvt_double. void stringify_value(json_object *value, int &type, std::string &stringified, const char *reading, int line, json_object *feature) { if (value != NULL) { int vt = value->type; diff --git a/serial.cpp b/serial.cpp index b2a6bdcae..5a9d7ae50 100644 --- a/serial.cpp +++ b/serial.cpp @@ -187,7 +187,6 @@ std::string serialize_feature(serial_feature *sf, long long wx, long long wy) { #define FLAG_LAYER 7 #define FLAG_LABEL_POINT 6 -#define FLAG_SEQ 5 #define FLAG_INDEX 4 #define FLAG_EXTENT 3 #define FLAG_ID 2 @@ -197,7 +196,6 @@ std::string serialize_feature(serial_feature *sf, long long wx, long long wy) { long long layer = 0; layer |= sf->layer << FLAG_LAYER; layer |= (sf->label_point != 0) << FLAG_LABEL_POINT; - layer |= (sf->seq != 0) << FLAG_SEQ; layer |= (sf->index != 0) << FLAG_INDEX; layer |= (sf->extent != 0) << FLAG_EXTENT; layer |= sf->has_id << FLAG_ID; @@ -205,9 +203,7 @@ std::string serialize_feature(serial_feature *sf, long long wx, long long wy) { layer |= sf->has_tippecanoe_maxzoom << FLAG_MAXZOOM; serialize_long_long(s, layer); - if (sf->seq != 0) { - serialize_long_long(s, sf->seq); - } + serialize_long_long(s, sf->seq); if (sf->has_tippecanoe_minzoom) { serialize_int(s, sf->tippecanoe_minzoom); } @@ -252,9 +248,7 @@ serial_feature deserialize_feature(std::string &geoms, unsigned z, unsigned tx, deserialize_long_long(&cp, &sf.layer); sf.seq = 0; - if (sf.layer & (1 << FLAG_SEQ)) { - deserialize_long_long(&cp, &sf.seq); - } + deserialize_long_long(&cp, &sf.seq); sf.tippecanoe_minzoom = -1; sf.tippecanoe_maxzoom = -1; @@ -683,10 +677,6 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf) { *(sst->area_sum) += extent; } - if (!prevent[P_INPUT_ORDER]) { - sf.seq = 0; - } - unsigned long long bbox_index; long long midx, midy; diff --git a/serial.hpp b/serial.hpp index a465bfd67..9467cd07d 100644 --- a/serial.hpp +++ b/serial.hpp @@ -31,6 +31,10 @@ void deserialize_ulong_long(char **f, unsigned long long *n); void deserialize_uint(char **f, unsigned *n); void deserialize_byte(char **f, signed char *n); +// This is the main representation of attribute values in memory and +// in the string pool. The type is one of the mvt_value type (mvt_string, +// mvt_double, mvt_bool, or mvt_null). Note that all numeric values, +// whether integer or floating point, use mvt_double here. struct serial_val { int type = 0; std::string s = ""; 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 index 5a010c509..af2017bac 100644 --- 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 @@ -16,23827 +16,23827 @@ }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 8 }, "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": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "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": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 4 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 9 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 23 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "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": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 13 }, "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 & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "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": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "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 Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 31 }, "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": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "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": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "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": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "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": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 36 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 37 }, "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 ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "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": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 7 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "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": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 24 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 58 }, "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 & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 41 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "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 & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "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": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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 & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "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": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 43 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "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 & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "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": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "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": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "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": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "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": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "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 Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 76 }, "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": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "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": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "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": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "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": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "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": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "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": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "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/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "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 & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "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": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "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": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 89 }, "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": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "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": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "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": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 71 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "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": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "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 & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "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": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "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": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 20 }, "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": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 90 }, "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": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 5 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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 ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "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": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "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": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 22 }, "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": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "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": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 59 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 141 }, "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": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "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": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 130 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "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": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 236 }, "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 & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "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": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "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": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "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": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 89 }, "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": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "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": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 10 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "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": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "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 & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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 & Lake St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "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": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "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": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "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": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "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 & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "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": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "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": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "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": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "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": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "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": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 178 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "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": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 115 }, "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": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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 & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 175 }, "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": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 202 }, "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": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "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": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 96 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 11 }, "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": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 5 }, "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 & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "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": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "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 & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "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": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "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 & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "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": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 113 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "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": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "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": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "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": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "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": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "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": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "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": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "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": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "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": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "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": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "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 Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "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": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 184 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "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": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "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": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 158 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "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": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 206 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 153 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "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": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "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": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "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": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "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 & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "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": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "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": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "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": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "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 & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "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": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "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": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "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": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "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": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "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": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "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": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "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": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "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": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "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": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "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 & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "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": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "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": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "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": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "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": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "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": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "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": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "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": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "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": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "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/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "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": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "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": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "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": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 233 }, "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 & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "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": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "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": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 188 }, "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": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "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": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "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": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "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": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "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": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "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": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "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": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "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": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "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": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "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": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 217 }, "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": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "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": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "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": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "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": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "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": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "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": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 171 }, "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": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "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": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "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 & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "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": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "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": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "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": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "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": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "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": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "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 & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "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": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "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 & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "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": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "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": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "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": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "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": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "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": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "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": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "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": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "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": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 49 }, "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": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "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": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 228 }, "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": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 218 }, "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&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "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": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 165 }, "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": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "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": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "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": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "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 & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "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": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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 & Keith St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "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 ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "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": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "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": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "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": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "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": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "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 & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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 & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "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": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "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": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "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": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "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": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "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": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "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": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "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": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "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 & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 208 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "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": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 142 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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 & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "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": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 166 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 67 }, "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 & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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 & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 139 }, "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 & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 137 }, "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": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 152 }, "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 & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 16 }, "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": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 46 }, "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": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "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": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 119 }, "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": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "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": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 131 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "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": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "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": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "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 & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "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": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "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": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "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": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 169 }, "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": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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 (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 167 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "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": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "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": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "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 AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "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": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 105 }, "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": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "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": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "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 & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "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": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "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": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 162 }, "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": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "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": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "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": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "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 & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "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": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "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": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "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 & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "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 & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "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": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "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": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "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 & Athens St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "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 & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "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": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "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": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "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": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 71 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "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": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "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": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 173 }, "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": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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 & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "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&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "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": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "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": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 106 }, "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": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "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": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "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": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "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": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 174 }, "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 & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "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": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "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": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "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": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "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": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "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": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "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": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "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": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "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": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "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": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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 & Keith St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "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": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "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": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "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": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "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": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "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": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "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": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "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 ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "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": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "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": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "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": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 51 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 49 }, "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": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "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": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "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": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "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": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "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": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "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": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "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": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "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 & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "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 & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "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 & Allison St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "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": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "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": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "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": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 143 }, "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": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "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": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "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": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 130 }, "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": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 160 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "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": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "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": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 4 }, "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 & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 26 }, "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 & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "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": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "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": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 43 }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 349 }, "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 & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "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": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 323 }, "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": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "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": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 102 }, "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": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "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": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 311 }, "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": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "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 & Anza St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 559 }, "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": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 586 }, "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/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "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": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 291 }, "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": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "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": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "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 & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "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": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "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": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "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": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "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": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "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": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "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": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "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": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "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": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 204 }, "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": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "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": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "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": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "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": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "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": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "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": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 561 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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 & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "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": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 280 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "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": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 84 }, "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": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "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": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "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": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "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": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 591 }, "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 & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "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 & Lake St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "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": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 166 }, "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 & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "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 & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "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": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "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 & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "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": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 296 }, "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": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "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 & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 278 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "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": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 532 }, "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": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "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": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "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": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "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": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "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": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "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": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "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": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "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": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "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": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "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 & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "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": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 356 }, "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": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 470 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "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": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 541 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "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": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 269 }, "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": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "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 & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "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": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "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": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 469 }, "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 & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "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": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 410 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "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": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 467 }, "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 & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "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 & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 447 }, "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 & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "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": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 445 }, "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": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 510 }, "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 & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 94 }, "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": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "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": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 214 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "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": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 564 }, "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": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "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": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 23 }, "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": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "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": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "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": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "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 & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "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": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "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": "ARGUELLO BLVD & EUCLID AVE", "tippecanoe:retain_points_multiplier_sequence": 544 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "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": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 159 }, "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 & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "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": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "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": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "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": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "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": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "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": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "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 & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "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 & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "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": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "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 & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "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": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 267 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "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": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "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": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "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": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "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": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "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": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 217 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "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": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "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": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "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": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 347 }, "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": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "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": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "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 & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "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": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "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": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "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": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "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 & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "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": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "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": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "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": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "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": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "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": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "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": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "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": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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 & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "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": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "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": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "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": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "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": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "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 & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 142 }, "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": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "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": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 154 }, "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": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "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": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 118 }, "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": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "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": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "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": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "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": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "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": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "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": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "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": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "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": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "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": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "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": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "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": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 365 }, "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": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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 & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "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": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 485 }, "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 Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "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": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 486 }, "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": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "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": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 517 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "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": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 548 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "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": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "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": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "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": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 420 }, "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": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 419 }, "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": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "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": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 436 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "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": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "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": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "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": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 515 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "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": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 316 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "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 & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 394 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "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": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "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": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "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": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 407 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "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": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "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": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "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": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 189 }, "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": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "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": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 553 }, "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": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "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": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "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": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "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 & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "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 & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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 & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "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 St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "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 Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "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": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "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": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 318 }, "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": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "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": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "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 AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "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": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 383 }, "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": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "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": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "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 & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 427 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "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": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "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": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 529 }, "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": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "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": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "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": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "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": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 362 }, "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": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "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": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 332 }, "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 & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "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": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "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": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "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": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "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": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "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": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "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": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "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&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 587 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "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": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "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": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "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": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "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": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "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 & Broadway", "tippecanoe:retain_points_multiplier_sequence": 396 }, "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": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "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": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "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": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "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": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "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": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "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": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "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": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "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": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "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": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "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": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "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 & Broadway", "tippecanoe:retain_points_multiplier_sequence": 259 }, "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": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "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": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "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": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "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": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "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 & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "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": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "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 & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "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": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "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": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "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": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "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": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "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": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "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": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 540 }, "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": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "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": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "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": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "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": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "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": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "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 & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "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 & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "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": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "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 & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "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": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "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": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "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": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "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": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "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": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "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": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "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": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 195 }, "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": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "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": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "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/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "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": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "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": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 589 }, "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": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "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": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "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.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "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": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 572 }, "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": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "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": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 575 }, "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": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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 & 13th St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "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 & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "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": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "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": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "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": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 545 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "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": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "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": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 493 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "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": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "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": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "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": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "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": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "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": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "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": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 582 }, "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": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "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": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "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": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "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": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "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": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "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": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "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": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "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": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "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": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "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": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "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": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "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": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "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/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 560 }, "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": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "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": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "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": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "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": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "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": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 536 }, "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": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "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": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "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": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "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": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "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": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "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": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 499 }, "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": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "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": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "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": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "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": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "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": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "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": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "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": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "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": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 457 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "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": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "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 & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "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": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "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": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "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": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "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": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "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": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "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 & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "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": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "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 & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "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": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 551 }, "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": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "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": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "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": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 537 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "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": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "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 & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "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": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "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": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "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": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "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": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "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": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "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": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "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": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "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": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "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": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "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": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "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 St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "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": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "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": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "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": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "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": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 566 }, "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": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "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 & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "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_sequence": 353 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "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": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "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": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "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 & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "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": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "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": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 337 }, "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": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "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": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "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": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "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": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "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": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "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 & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "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": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "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 & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "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": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "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": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "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": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "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": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "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 & Athens St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "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 & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "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": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "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": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "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": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "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": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 299 }, "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": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "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": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "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": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "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": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 109 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "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": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 360 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "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": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "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": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 563 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "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": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "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": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "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 & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 538 }, "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": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "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": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 583 }, "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": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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 & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 440 }, "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&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "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": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 441 }, "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": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 384 }, "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": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "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": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "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": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "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": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 584 }, "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 & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "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": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "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": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "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": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 31 }, "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": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "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": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "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": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "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": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 556 }, "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": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "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": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "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": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "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 & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "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": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "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 & Keith St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "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": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "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": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "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": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "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": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "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": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "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": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "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": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "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 ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "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": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "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": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 225 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "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": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 223 }, "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": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "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": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "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": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "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": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "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": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "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": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 392 }, "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": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "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": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 431 }, "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 & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "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 & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "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 & Allison St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "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": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 335 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "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": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "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": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "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": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "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": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 129 }, "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": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "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": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 462 }, "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": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "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": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "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": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "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": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 498 }, "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": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "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": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 435 }, "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": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "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": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 188 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "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": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 527 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "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": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "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": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "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": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 11 }, "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 & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "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": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "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 & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "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": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 520 }, "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": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 201 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "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 Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 351 }, "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/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "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": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 350 }, "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": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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 ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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 & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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 M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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 & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 6 }, "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 ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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 & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "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": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 200 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "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": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 104 }, "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": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 220 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "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": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 16 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "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": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 222 }, "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 & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 21 }, "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": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 64 }, "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": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "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": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "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 & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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 & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 12 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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 & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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 & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 95 }, "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": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "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 & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "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": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 143 }, "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&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "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": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 244 }, "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 & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "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": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 137 }, "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 & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "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": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 164 }, "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": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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 & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 243 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "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": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 159 }, "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": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "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": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 153 }, "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": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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 (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 156 }, "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 AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 155 }, "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": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "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": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "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": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "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": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "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": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 268 }, "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": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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_sequence": 117 }, "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": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "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": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 68 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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_sequence": 241 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "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": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 262 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "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": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "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 & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "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": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "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": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 234 }, "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": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "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": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "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": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "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": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "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 & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "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": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "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": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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 & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "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 & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "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": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "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": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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 & Naples St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "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": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "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": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "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 & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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 & University St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "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 & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "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": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 114 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "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 & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "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": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "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": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "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 & Girard St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 157 }, "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": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "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 & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "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": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "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": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "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": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "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": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "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": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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 & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "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": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "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": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "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": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "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": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "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 & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 10 }, "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": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "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": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "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 Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "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": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 257 }, "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": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "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": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "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": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "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": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "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 & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "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": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "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": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "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 ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "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": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "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": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 102 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 76 }, "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": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "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": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 63 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "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": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 73 }, "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": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 62 }, "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": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 266 }, "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": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "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": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 48 }, "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": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "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": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "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": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 32 }, "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 Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "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": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "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": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "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": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "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 & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "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": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 160 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "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 & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "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": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "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": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 33 }, "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": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "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": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 181 }, "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": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "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_sequence": 235 }, "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 & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "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 & Broad St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "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": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "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 & Allison St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "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 & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "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 & Acton St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "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": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "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": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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 & Athens St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "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": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "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 & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "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": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "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 & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "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": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "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": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "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": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 47 }, "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": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 247 }, "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": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 204 }, "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&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "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": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 72 }, "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 & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "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 & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "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": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "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": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "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": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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 & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "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 & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "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": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "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": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 191 }, "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": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "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": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 184 }, "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 & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 189 }, "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": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "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": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "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": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "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 & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "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": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 230 }, "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": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "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": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "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": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "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": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "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": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "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": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "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": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 5 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "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/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 258 }, "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 & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "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": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "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": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 40 }, "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 & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "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": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "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 & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "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": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "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": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 549 }, "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": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 872 }, "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": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "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": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "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 & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "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": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "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 & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "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": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 806 }, "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/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "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": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 376 }, "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": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "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": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 254 }, "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 & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "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": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 729 }, "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": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "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": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 728 }, "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": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 730 }, "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": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 778 }, "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": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "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": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 851 }, "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": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "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": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 727 }, "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": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "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": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "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": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "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": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "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": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 996 }, "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/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 741 }, "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": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 742 }, "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": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "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": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "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": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "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": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "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": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "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": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "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 & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "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": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "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 & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "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": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "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 & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "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": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 993 }, "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": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 691 }, "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": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "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": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "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": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 736 }, "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 & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "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": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 510 }, "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": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "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": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "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": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "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": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "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": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "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": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "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": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "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 & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "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": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "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": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "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": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "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 & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "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": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "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": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 509 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 697 }, "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": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "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": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "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": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "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": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "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": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "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": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "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": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "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": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "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": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "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": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 812 }, "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": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "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 & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 217 }, "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": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "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": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 415 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "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": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "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 & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "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": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "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": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "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 & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "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": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 398 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "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/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 717 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "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 & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 713 }, "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": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "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": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "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": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "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": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "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": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "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": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 357 }, "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": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "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 & Clement St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "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": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 211 }, "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": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "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": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "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": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 356 }, "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": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "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 & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "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 & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "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": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "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": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "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 S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "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": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 554 }, "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 & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "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 & Lake St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "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": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "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": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 354 }, "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": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 410 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "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 & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "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": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "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": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 409 }, "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 & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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 & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "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": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "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": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "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": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "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 & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "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": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1436 }, "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": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 213 }, "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 & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 753 }, "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 & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 752 }, "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": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "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 & Judah St", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "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": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "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": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 712 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "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": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "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": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 883 }, "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 & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "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": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1305 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "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": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 750 }, "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": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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 & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "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": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "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": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "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": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 709 }, "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": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 882 }, "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": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "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": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 708 }, "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": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "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": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 707 }, "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 & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "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": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "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": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "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": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "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": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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 & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 887 }, "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": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "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 & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "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 & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "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": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "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": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "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 & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 885 }, "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": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 884 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "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": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "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": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "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": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "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": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "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": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "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 & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "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": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "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 & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "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": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "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": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 1423 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "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": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 687 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "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 & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "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": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "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": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "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": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "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": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "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": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "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": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "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 & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "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": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "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": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "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": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "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": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "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": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "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": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "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 & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "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": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "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 & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "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": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "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 & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "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 & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "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": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "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 & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "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 & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "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 & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "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": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "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 & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "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": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "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 & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "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 & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "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": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "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": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 577 }, "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": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "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": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "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": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 162 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "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": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1266 }, "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 & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "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": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 235 }, "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": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "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": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 163 }, "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": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "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": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 544 }, "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": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "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": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "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 & California Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "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": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_sequence": 949 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "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": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "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": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "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": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 951 }, "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": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "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 & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 291 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "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": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 290 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "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": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 349 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 52 }, "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": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 947 }, "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": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 37 }, "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": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "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": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 950 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "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": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "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": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 553 }, "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": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "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 & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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 & Clement St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "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": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 348 }, "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 & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "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": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 293 }, "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": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "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": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "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 & EUCLID AVE", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "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": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "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": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "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": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "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": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "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": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "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": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 551 }, "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": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "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": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 401 }, "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": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "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": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "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 & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "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": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "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": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 754 }, "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": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 716 }, "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": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "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": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 98 }, "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": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "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_sequence": 96 }, "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": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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 & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 706 }, "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": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "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_sequence": 114 }, "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": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "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 & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "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": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "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": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "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 & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 583 }, "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": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 582 }, "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": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 581 }, "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 & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "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": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 744 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "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": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 705 }, "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": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "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": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 743 }, "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 & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 681 }, "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": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 683 }, "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": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "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": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "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": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 580 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "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": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "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": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "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 & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 469 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "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": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "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": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "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 & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "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": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "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": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "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": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "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": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "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 & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 556 }, "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": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "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": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "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": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "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 & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "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": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "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": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 871 }, "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 & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "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": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "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": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 869 }, "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 & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "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": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "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": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "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 & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "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 & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 634 }, "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 & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "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": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 632 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "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 & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "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": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "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": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "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 & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "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": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "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": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "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": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "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": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "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": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "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": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "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": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "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": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "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": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "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 & Baker St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "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 & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "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": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 628 }, "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": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "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": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "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": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "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": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "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 & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "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": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "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": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "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": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "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": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "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": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "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": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "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": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "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": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "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": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "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": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "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": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "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": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "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": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "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": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 617 }, "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": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "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": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "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 & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "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": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 241 }, "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": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "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": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "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": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "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": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "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": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "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": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "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": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "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": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 359 }, "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": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "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": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 384 }, "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 & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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": "18th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "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": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "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": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "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": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "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": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "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": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "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_sequence": 288 }, "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": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "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 & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "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": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "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": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "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": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "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": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "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": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "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": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "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 & Castro St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "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": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "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": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "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": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "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": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 602 }, "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": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "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": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "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": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "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": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "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": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "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": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "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 & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "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": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "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": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "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_sequence": 127 }, "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": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "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": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "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": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "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": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 909 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "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": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "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": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "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": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "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 & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "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": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "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": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "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": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "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 Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "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": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "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 t", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "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": "Ulloa St & West Portal Ave Arrive", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "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 Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "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 Station", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "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": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "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": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "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": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "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": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "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": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 347 }, "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": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "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": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 499 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1349 }, "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/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "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 Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "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": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "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": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "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": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 999 }, "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": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 813 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 725 }, "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": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 724 }, "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": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "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": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 4 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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 & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 158 }, "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": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "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": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "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/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "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": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "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": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "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": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 147 }, "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": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "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": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "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 & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 689 }, "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": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 1336 }, "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": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "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": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 894 }, "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": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 893 }, "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 & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "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 & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 146 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "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": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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 & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 644 }, "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 & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 645 }, "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": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "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": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "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 & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "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": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 902 }, "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&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "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": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "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": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "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 & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 961 }, "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": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 955 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 788 }, "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": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 789 }, "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 & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "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": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 896 }, "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 & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "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": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "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": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 959 }, "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": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 897 }, "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 & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 952 }, "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": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 953 }, "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": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "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": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 908 }, "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": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "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": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "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": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "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": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 998 }, "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": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "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": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "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": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "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": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "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": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "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": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 968 }, "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": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 607 }, "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": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1341 }, "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": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 466 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "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": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "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": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "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": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "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": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 794 }, "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": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 910 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "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 & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "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": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "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": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "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": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "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": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "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": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "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": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "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": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "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": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "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": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "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": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "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 & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "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": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1348 }, "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": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "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": "25th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "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 & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "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 & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "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": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "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": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "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 & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "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 & 28th St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "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 St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "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 & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "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 & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "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 Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_sequence": 435 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "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": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "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": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 500 }, "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": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "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 & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 522 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 790 }, "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 & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 791 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 938 }, "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": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 937 }, "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": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "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 & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "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 & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "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": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 1169 }, "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 & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "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": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 786 }, "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 AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "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": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 939 }, "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": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "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": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "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": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "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": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 589 }, "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": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "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": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "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": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "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_sequence": 783 }, "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": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 793 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 19 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "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": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 562 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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_sequence": 1324 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "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": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 1435 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "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": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "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": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 785 }, "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_sequence": 1297 }, "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": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 784 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "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": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "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": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "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": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "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": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "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 & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "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": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "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 & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 898 }, "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": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "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": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "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": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "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": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "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": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "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": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "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": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "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": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "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 & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 935 }, "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": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "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": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "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 St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 667 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 8 }, "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": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "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": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "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 & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "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_sequence": 981 }, "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": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "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": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "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": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 980 }, "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": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "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 & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "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": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 733 }, "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 & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 734 }, "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": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "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": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "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&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "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": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "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": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 321 }, "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": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 797 }, "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": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 963 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "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": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "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": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "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": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 966 }, "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": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "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": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "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": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "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": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "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": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "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": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 918 }, "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": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 962 }, "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": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "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": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "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": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 967 }, "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": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "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": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "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": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "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": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "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 & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "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": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "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": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 660 }, "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": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "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": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 662 }, "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 & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 663 }, "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": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "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": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "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": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "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_sequence": 1202 }, "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 & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "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": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "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": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "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": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "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": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "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": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "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": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "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": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "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": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "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": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "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 & Broadway", "tippecanoe:retain_points_multiplier_sequence": 658 }, "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": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 666 }, "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": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "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": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "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 & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "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": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "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": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "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 & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "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": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "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": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "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": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "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": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "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": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "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": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "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": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 917 }, "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": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "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": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "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": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "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 & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "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": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "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": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "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": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 986 }, "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": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "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": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "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 & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "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": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "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": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "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": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "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": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "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": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "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": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "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": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "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 & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "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": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "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": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "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": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "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": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "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": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "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": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 915 }, "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": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "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": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "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": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "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": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "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": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "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": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "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": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "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": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "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": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "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": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "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": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "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": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "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": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "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": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "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": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "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": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "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 & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "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": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "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": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "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 & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "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 & Bush St", "tippecanoe:retain_points_multiplier_sequence": 982 }, "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 & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "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": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 988 }, "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": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "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": "Post St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "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": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "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": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "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": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "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": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "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": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "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 & SANSOME ST", "tippecanoe:retain_points_multiplier_sequence": 308 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "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": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "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": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "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": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 971 }, "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": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "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 & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "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": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "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": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "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": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 481 }, "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": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "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": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "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": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 946 }, "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_sequence": 299 }, "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": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "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": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "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/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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 & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "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": "Spear St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 20 }, "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": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "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": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 16 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "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": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "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": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "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": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 1465 }, "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 & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 817 }, "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 & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 839 }, "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": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "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": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 755 }, "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": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "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": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "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": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "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.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "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_sequence": 1419 }, "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": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 850 }, "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": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "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": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "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": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "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 & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "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&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "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": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "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": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "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 D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1416 }, "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": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 99 }, "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 & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "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": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "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": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "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": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "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": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "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": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 781 }, "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": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "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": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "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": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "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 & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "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": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "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": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "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": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "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": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "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": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "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": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1218 }, "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": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "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": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "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 & Gough St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "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": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "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": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "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": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "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": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "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": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "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": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 516 }, "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": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 610 }, "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": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "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": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "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": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "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": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "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 & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "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": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "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": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "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 & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "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": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "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": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "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": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "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": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 970 }, "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": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "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": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "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": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "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": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "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": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "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": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "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": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "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": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "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": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "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": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "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": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "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": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "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": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "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": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "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": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "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": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 905 }, "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": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "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": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 856 }, "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 & 7th St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "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 & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "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": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 867 }, "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": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "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": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 635 }, "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": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "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": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "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/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "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": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "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": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "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": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 863 }, "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": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "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": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 866 }, "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": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "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": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "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": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 822 }, "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": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "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": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 861 }, "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": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "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": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "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": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "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": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "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": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "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": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "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": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "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 & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "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": "Church St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "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": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "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": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "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": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "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": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "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": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 865 }, "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": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "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": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "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": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "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": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "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": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "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": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "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": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "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": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "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": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "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": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "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": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "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": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "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": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "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_sequence": 1240 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "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": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "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": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "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": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 823 }, "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": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "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": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 824 }, "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": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "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": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "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": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "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": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "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": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "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": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "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": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "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": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 825 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_sequence": 826 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "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": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "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": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1429 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "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 & 20St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "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": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "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": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "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": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "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": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "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": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 9 }, "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": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "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": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "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": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "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": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "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": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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 & 4th St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "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": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "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": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "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 & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 862 }, "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": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "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": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "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 & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "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": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "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": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "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": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "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 & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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 & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "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": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "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": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "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": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1425 }, "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": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "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 & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "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": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "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": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 655 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1415 }, "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 & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "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 & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "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": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "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": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "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 & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "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": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "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": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "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": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "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": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "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_sequence": 12 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "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": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "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": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 979 }, "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 & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "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 & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "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": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 974 }, "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 & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "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": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "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": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "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": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "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": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 719 }, "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": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "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": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "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": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "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": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "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": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "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": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "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": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "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": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 975 }, "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 & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "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": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "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": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 976 }, "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": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "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": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "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": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "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 & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "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": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "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": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "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": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "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": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "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": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "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": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "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": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "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": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "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": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "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 & 17th St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "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": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "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": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "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": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "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": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "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": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "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": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "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 St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "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": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "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": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "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": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "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": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "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": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 814 }, "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": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "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 & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "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": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "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": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "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": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "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": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "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": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 816 }, "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": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "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": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "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": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "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_sequence": 62 }, "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": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "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": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "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": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "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 & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "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_sequence": 877 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "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": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "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": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "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": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "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": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "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": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "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": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "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": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "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": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 838 }, "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": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 837 }, "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 & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "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": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "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 Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "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": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "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": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "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": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "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 & 24th St", "tippecanoe:retain_points_multiplier_sequence": 829 }, "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": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "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": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "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": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "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": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "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": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "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": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "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": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "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": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "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 & 24th St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "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": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "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": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "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": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "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 & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "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 & Bessie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "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": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 540 }, "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": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "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": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 831 }, "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 & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "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": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "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": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "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 & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "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": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "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 & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "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": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "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": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 890 }, "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": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "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": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "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 & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 834 }, "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": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "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 & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "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": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 846 }, "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": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "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": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "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": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "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 & Naples St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 930 }, "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": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "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": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "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": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 868 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "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": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "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": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "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 & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "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": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "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": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "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": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "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 & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "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": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "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": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "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": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "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 & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "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": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "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": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 759 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "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 & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "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": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "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": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "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": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "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 & 25th St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "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": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "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": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 189 }, "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": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "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": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "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": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "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": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 720 }, "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 & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "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": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 255 }, "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": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "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": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 271 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "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": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 273 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 892 }, "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": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 891 }, "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 & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "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": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "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": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "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 & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "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": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "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": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "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": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 1400 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "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 & Selby St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "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": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 924 }, "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": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "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": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 944 }, "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": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "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": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "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": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "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_sequence": 1326 }, "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 & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "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": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 942 }, "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": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 803 }, "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 & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "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": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 1451 }, "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": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "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": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "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": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "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": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "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": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "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": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "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 & Girard St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "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&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "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_sequence": 1081 }, "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": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "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": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "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": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 940 }, "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": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "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": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "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 & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1273 }, "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": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "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": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "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": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "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": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "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": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 1452 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 756 }, "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 & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "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": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "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": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "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 & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "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": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "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": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "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": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 804 }, "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": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "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_sequence": 71 }, "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 & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "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": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "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": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 922 }, "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": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "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": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 921 }, "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 & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "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": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "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": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "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 & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "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": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "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": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "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": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 928 }, "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 Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "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": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "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": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "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": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "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": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1401 }, "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": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "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 Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "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": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "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 & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "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 & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "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 & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "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": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 811 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "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 & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "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": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "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": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "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": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 807 }, "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": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "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": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 721 }, "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": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "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": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 647 }, "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": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "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 & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "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": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "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 & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 677 }, "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": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "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 & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 654 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "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": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "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": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 675 }, "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": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 739 }, "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": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "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": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 567 }, "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": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "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": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "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": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "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 & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 673 }, "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 ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "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": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "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": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 685 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "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": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 575 }, "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": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 601 }, "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": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 576 }, "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": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "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": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 543 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "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": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 572 }, "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": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 542 }, "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": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "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": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "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": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "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": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "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": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "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": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 330 }, "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": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "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": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "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": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 257 }, "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 Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "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": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "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": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "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 & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 233 }, "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": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 954 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "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 & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 957 }, "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": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "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": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "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": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "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": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "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": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "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 & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "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": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 844 }, "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 & Allison St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "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 & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "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 & Acton St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "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": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 841 }, "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": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 738 }, "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": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "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 & Athens St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 592 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "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": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "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 & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 591 }, "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": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "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": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "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 & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "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": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "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": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "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": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 324 }, "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": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 560 }, "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": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "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": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "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": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "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&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1359 }, "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": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 566 }, "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 & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "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 & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "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": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "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": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "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": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 608 }, "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": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "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 & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "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 & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "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": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "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": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "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": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 595 }, "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": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "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 & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "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": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "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": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "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": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "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": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "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 & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "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": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "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": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "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": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "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": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "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": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "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": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "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": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "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": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "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": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "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": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "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": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 21 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "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/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "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 & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "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": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 280 }, "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": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "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": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "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": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "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": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 279 }, "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 & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "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": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "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 & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "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": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "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": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "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": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 498 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "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 Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 875 }, "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/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "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 Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 874 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "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": "Feature", "properties": { "name": "Metro Powell Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 782 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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_sequence": 1 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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_sequence": 3 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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_sequence": 5 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "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": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 183 }, "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": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "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 & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 505 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 96 }, "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 & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 42 }, "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 NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "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 & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 103 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "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": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 495 }, "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": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "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": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "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": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "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": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 454 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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_sequence": 1 }, "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 Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "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 Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "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 & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "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": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 172 }, "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": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "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": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 24 }, "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": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "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": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "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": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "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&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "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&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "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_sequence": 452 }, "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 & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "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 & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "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 & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 160 }, "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 & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "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": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "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": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 302 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "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_sequence": 251 }, "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": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "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 & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 451 }, "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 & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "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": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 158 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "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 & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "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": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "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": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 163 }, "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": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "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 & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "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": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "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": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "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 LOOP", "tippecanoe:retain_points_multiplier_sequence": 287 }, "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 AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "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": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 286 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "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": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 254 }, "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": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 255 }, "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": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "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 & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 175 }, "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": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "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_sequence": 135 }, "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": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "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": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "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": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 503 }, "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/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "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": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 263 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 334 }, "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": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 206 }, "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": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 443 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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_sequence": 208 }, "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": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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_sequence": 11 }, "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, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 327 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "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/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 116 }, "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": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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_sequence": 329 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 332 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "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": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 113 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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_sequence": 7 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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_sequence": 445 }, "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": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "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_sequence": 349 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "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": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_sequence": 489 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "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": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 488 }, "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": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "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_sequence": 335 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "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 & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "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": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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 & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 486 }, "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": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 435 }, "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 & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "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": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 230 }, "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": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "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 St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "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": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "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 & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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 & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 236 }, "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 & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "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": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "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 & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "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_sequence": 275 }, "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": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "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": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 218 }, "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": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "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_sequence": 281 }, "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": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "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": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "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 & Athens St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "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": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "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": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "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": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "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": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "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": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 246 }, "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": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 250 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "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": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "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": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "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": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "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": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "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": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "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_sequence": 5 }, "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 & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "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": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "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": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "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": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "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": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "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 & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "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": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 205 }, "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 & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "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_sequence": 412 }, "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": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "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": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "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": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "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 & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "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 & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "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": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "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": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "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 & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "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": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "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 & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "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": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "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": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "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": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "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": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "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": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "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 & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 461 }, "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": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "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": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "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 & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "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 Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "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 St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "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": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "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": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "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": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_sequence": 474 }, "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": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "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 Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "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": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "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 & Keith St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "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": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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 & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "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": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "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": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 181 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "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": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 179 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "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 Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 129 }, "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": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 43 }, "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": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "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_sequence": 131 }, "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": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "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": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 496 }, "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": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "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 community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 502 }, "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": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "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 & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 101 }, "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": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "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": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 109 }, "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": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "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": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 165 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "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": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 125 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "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": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 99 }, "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": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "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": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 98 }, "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": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 497 }, "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": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "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": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 184 }, "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 & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "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": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "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": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "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 NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "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": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 501 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "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 RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "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": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "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 & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 185 }, "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": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "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_sequence": 444 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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 & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 441 }, "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, "tippecanoe:retain_points_multiplier_sequence": 312 }, "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": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "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": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "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": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "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": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "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": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 506 }, "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 Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "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": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "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 & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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_sequence": 40 }, "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": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "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": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 371 }, "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": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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_sequence": 314 }, "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": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "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": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "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": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "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": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "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": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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_sequence": 295 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "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 & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "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 & Montana St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "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 & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "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": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "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": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "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": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "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 & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "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": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "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": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "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": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "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 & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "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": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "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": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "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": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "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": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 337 }, "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": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "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_sequence": 436 }, "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 Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "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 & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "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 & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "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 & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "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": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 331 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "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_sequence": 330 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "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_sequence": 322 }, "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 & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "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_sequence": 325 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "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": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "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 & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "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 & Allison St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "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 & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "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 & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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 & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "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 & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "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 & Acton St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "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": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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_sequence": 36 }, "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": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "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": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "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": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "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": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "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": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 222 }, "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": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 191 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "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 & Paris St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "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": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "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 & Athens St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "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 & Brunswick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "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": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "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": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "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": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "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 & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 213 }, "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": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "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 & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "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": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "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": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 243 }, "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": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "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": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "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": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "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 & Munich St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "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": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "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 & Prague St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "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": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "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": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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_sequence": 72 }, "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 & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "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": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "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": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "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_sequence": 319 }, "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": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "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": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "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": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "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": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 74 }, "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, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "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": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "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": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 457 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "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": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "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": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "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_sequence": 379 }, "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": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "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": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "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 & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "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_sequence": 459 }, "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&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "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 & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 123 }, "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": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 373 }, "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": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "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": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 449 }, "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 & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "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_sequence": 344 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "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 & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 343 }, "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": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "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": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "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": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "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 & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 419 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "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": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "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": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "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": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 200 }, "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": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "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 & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "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": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "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_sequence": 397 }, "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 & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "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": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "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 & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "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": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 378 }, "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 & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "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_sequence": 399 }, "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": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "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": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "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": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "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": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "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_sequence": 151 }, "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": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 346 }, "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 & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "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 & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "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": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "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 & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "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": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 361 }, "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": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "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_sequence": 359 }, "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 & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "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": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 364 }, "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": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "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": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "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 & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "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": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "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": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "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": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "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": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 422 }, "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 & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "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": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "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": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 320 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "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": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "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": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 424 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "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": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "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 & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "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": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 421 }, "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": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "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": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "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": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 392 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "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 & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "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": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "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": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "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_sequence": 401 }, "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": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "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": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 350 }, "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": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "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 & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "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": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "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_sequence": 356 }, "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 & SOMERSET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "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 & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 353 }, "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": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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 & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "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": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "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": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "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": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "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/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 476 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "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 & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "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 & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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 & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "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 & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "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": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "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 & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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_sequence": 417 }, "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": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "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 & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "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": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "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": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 477 }, "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": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "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": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 478 }, "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": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "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": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "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 & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "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": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 458 }, "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 & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "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_sequence": 415 }, "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": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "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": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "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 & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "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": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "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": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 18 }, "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": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 15 }, "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": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "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": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 91 }, "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": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "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": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 32 }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "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/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 2094 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "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": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "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": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 658 }, "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": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "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": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 3214 }, "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/Visitor Center", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "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 & Bodsworth Rd", "tippecanoe:retain_points_multiplier_sequence": 3426 }, "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 & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "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": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 3425 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "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/Stables", "tippecanoe:retain_points_multiplier_sequence": 660 }, "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": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 659 }, "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_sequence": 1927 }, "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 & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "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_sequence": 1928 }, "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": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "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": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3399 }, "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": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2170 }, "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": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 3398 }, "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/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "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_sequence": 902 }, "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": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "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": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "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": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "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": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 586 }, "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 Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "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 & Bowley St", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "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 & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3124 }, "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_sequence": 1741 }, "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": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "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/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "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/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "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 Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "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": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "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": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "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": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1737 }, "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_sequence": 1828 }, "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": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "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": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "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": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1742 }, "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": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "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": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "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": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "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 & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "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": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "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)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "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": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1829 }, "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": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1735 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "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": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 530 }, "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": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "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 & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1543 }, "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": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "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": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 3312 }, "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": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "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": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 3313 }, "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": "220 Halleck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "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": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3315 }, "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": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 3314 }, "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": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2025 }, "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": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1541 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3316 }, "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 NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3476 }, "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": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3078 }, "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 & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2391 }, "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 Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "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 YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3477 }, "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": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2394 }, "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": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3475 }, "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": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "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/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1761 }, "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 & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "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": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "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 & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "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, "tippecanoe:retain_points_multiplier_sequence": 113 }, "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": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "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": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "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_sequence": 123 }, "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": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3388 }, "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": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "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": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "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": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3369 }, "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": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "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": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2455 }, "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_sequence": 1753 }, "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": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "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": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1792 }, "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": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "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 & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "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": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "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 St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "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 & Richardson Ave", "tippecanoe:retain_points_multiplier_sequence": 3079 }, "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": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "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": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 2395 }, "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 & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2863 }, "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 & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2885 }, "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": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2862 }, "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_sequence": 2384 }, "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 & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "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_sequence": 2380 }, "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": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "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": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2556 }, "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": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1637 }, "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": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "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": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2592 }, "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": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "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 & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "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_sequence": 768 }, "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": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "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": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "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": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "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_sequence": 3205 }, "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": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2893 }, "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 & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "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 & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "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": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "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": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3430 }, "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": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "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": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "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 & Beach St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "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": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "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": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 3276 }, "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": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "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_sequence": 758 }, "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": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 757 }, "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": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 759 }, "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": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "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": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "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": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 3514 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "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": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "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": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "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": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "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": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2870 }, "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": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 3244 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "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_sequence": 3097 }, "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 & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2865 }, "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 & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2869 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2891 }, "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": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2890 }, "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": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "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_sequence": 1640 }, "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": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "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_sequence": 1108 }, "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": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "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": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "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": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "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": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 717 }, "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": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "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 & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2667 }, "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_sequence": 2672 }, "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": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2671 }, "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": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "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 & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "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": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1657 }, "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 & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3362 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1654 }, "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": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "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": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "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": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2995 }, "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": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "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": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "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": "California St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "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": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3006 }, "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": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "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_sequence": 1258 }, "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": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "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": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "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": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2561 }, "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": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "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 & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "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 & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "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": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "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": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "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": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "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 & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "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": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1406 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "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": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 3189 }, "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": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "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": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 973 }, "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 & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2414 }, "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": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "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": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1940 }, "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": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3335 }, "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": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "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": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "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 & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "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": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 488 }, "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": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "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": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "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": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "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": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "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": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2396 }, "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": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "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": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "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": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 748 }, "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": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 967 }, "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 & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 968 }, "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 & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "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 t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3441 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3432 }, "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": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 965 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 106 }, "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": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "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_sequence": 3440 }, "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 & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "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": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 963 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "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": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "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": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "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_sequence": 3202 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "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": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "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": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "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_sequence": 498 }, "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 & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "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": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1699 }, "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_sequence": 1700 }, "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": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3394 }, "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": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3393 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "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_sequence": 3137 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "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": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3136 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "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 & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "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 & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "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": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "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_sequence": 1696 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3126 }, "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 & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3138 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3140 }, "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_sequence": 1694 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1695 }, "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": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3139 }, "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": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "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": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "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": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 850 }, "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 & California St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "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": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "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": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 849 }, "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": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "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": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 848 }, "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": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "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 & Clement St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "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": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "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_sequence": 1005 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "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": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "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": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 480 }, "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": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "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": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 847 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "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": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 685 }, "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": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "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": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3510 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "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": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "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 & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 846 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 844 }, "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": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 843 }, "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": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "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_sequence": 104 }, "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": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "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_sequence": 475 }, "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": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "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": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_sequence": 3467 }, "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 & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "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": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "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": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "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 & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 962 }, "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, "tippecanoe:retain_points_multiplier_sequence": 960 }, "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 & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 961 }, "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": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 959 }, "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 & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 3511 }, "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": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "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 & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "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 & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "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": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "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 S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3439 }, "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_sequence": 1349 }, "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 St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "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 S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3438 }, "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": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "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_sequence": 435 }, "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 & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "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_sequence": 439 }, "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 & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "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": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "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": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "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": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "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": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 681 }, "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": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "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 & Clement St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "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": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "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_sequence": 999 }, "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": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "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": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 438 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 841 }, "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": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 840 }, "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 & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "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": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 997 }, "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": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "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_sequence": 838 }, "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": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "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": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "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 & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "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": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "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": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 995 }, "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 & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "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": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "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": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "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 & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "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": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "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": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 3050 }, "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 & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "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": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "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 & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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_sequence": 91 }, "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 & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "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": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 89 }, "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 & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "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_sequence": 1343 }, "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 & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "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 & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "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": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3433 }, "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": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 483 }, "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": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "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": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2699 }, "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 & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "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_sequence": 1784 }, "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 & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1785 }, "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 & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "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": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "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": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2700 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "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": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3123 }, "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 & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "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_sequence": 2702 }, "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": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "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_sequence": 1693 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1692 }, "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": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 3122 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2706 }, "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 & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2708 }, "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 & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2709 }, "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": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "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 & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "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": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2116 }, "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_sequence": 3121 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "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 & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "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": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3120 }, "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 & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2115 }, "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 & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2114 }, "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 & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2113 }, "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": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1780 }, "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 & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "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 & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1779 }, "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_sequence": 1777 }, "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": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "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": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 393 }, "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": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "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_sequence": 1775 }, "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": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1776 }, "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": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "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": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "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": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "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": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 3456 }, "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": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3177 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "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 & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "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_sequence": 3119 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "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_sequence": 1687 }, "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": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "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": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "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": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1685 }, "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": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "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 & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "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 & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2109 }, "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": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2108 }, "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_sequence": 1684 }, "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": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3141 }, "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 & Judah St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "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": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "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_sequence": 1683 }, "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": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3116 }, "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": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3392 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3117 }, "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": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "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 & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "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 & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "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": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "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": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "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": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "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": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2107 }, "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": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "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 & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "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": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "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": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "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": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "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": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "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": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "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_sequence": 501 }, "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": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "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 & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "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": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "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 & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "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": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "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": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "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": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "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": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "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": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2444 }, "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": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "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": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2506 }, "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": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "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 & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "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 & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "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 & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "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": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2117 }, "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 & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2443 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "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 & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2441 }, "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": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2440 }, "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 & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "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": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "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": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "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": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "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": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2779 }, "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 & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "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": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "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": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2938 }, "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": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "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": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "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": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "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 & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2776 }, "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 & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2775 }, "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_sequence": 2774 }, "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": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2773 }, "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": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2647 }, "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 & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3192 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "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 & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2646 }, "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 & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "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_sequence": 2642 }, "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": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "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": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 3390 }, "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": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "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": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1536 }, "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 & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "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": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "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": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "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": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "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 & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2711 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "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 & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2714 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "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 & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2716 }, "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": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "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_sequence": 485 }, "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": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "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 & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "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_sequence": 2437 }, "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": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "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": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2718 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2435 }, "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 & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2436 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2434 }, "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": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2433 }, "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": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "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_sequence": 2432 }, "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": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2431 }, "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": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2721 }, "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 & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2722 }, "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": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2723 }, "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_sequence": 2781 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3131 }, "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": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2780 }, "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": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "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": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2772 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2726 }, "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 & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2727 }, "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 & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2728 }, "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": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2729 }, "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_sequence": 2770 }, "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": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "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 & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "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": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "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_sequence": 2768 }, "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": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "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": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "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": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "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": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2937 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2429 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "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 & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "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_sequence": 2426 }, "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 & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "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": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "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 & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "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": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "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 & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "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_sequence": 2423 }, "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": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "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 & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "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 & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "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": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "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_sequence": 2766 }, "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 & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "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 & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2764 }, "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 & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2763 }, "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_sequence": 2761 }, "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": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2762 }, "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_sequence": 354 }, "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 & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3373 }, "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": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "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 & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2641 }, "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": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3496 }, "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": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2631 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2731 }, "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": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2730 }, "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 & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "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": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "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 & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2720 }, "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 & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "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_sequence": 2704 }, "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": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2705 }, "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 & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2638 }, "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 & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "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 & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2648 }, "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 & El Mirasol Pl", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2650 }, "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 & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 2655 }, "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 & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "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 & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "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": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "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": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "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 & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "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 & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2636 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "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": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2635 }, "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": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 656 }, "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_sequence": 3025 }, "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": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "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 Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 362 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3195 }, "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": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 363 }, "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/SFSU", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1404 }, "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": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 3217 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "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": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 3027 }, "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": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1402 }, "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 & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3492 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "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": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "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 & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "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": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 531 }, "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 NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3479 }, "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": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 655 }, "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": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "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": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 653 }, "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": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 652 }, "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": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 364 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3022 }, "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": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 3023 }, "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": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "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 & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "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": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 3480 }, "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": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "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": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 957 }, "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": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "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 & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 679 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 719 }, "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": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 720 }, "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 & California Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2274 }, "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": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "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 & FUNSTON AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "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_sequence": 677 }, "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": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "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 & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 835 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "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 & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 3356 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "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": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 833 }, "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": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "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": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "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": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "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": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "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": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 993 }, "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_sequence": 675 }, "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 & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "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_sequence": 3067 }, "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": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 674 }, "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": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "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": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 673 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "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": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 831 }, "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": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "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_sequence": 3148 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "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": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 829 }, "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": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "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": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 828 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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_sequence": 112 }, "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": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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_sequence": 2272 }, "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": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2273 }, "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_sequence": 87 }, "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": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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 & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "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": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 975 }, "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": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "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": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 976 }, "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": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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 & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3354 }, "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": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 3353 }, "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 & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "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": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "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": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "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": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "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": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "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": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 905 }, "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": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "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": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3247 }, "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 & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "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": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "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": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 536 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "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": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 826 }, "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": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 827 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "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": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 991 }, "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": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "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": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "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": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 988 }, "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 & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 691 }, "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": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 687 }, "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": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "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 & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "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": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "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 & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "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 & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "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": "California St & Maple St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "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 & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "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": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "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 & EUCLID AVE", "tippecanoe:retain_points_multiplier_sequence": 3220 }, "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 & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "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_sequence": 3513 }, "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": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "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": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "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": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "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 & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "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": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "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": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "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": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "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": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "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": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "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": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "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": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1336 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3227 }, "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": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "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": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "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": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "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 & Turk St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "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": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "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 & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 2835 }, "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": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2853 }, "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": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 969 }, "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": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "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": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 970 }, "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": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "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": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "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": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "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 & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "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": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2665 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1772 }, "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 & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "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 & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "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_sequence": 1789 }, "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": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1790 }, "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": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "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": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "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_sequence": 1769 }, "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": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "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": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "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": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3344 }, "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": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 217 }, "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": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1768 }, "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": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 218 }, "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": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "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": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "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": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3383 }, "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": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "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_sequence": 1676 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "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": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 3112 }, "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": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "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_sequence": 1681 }, "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": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3115 }, "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_sequence": 261 }, "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": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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_sequence": 1680 }, "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 & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3114 }, "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": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "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": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "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 & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 262 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "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 & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "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": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "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": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1679 }, "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": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 3113 }, "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 & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "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_sequence": 1418 }, "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": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "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_sequence": 213 }, "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 & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "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_sequence": 3187 }, "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": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "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": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "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 & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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_sequence": 219 }, "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 & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "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": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "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 & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "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_sequence": 1764 }, "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": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1765 }, "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": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "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 & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1673 }, "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": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "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": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1619 }, "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": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "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": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "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": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3423 }, "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": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1788 }, "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 & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "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": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "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": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 740 }, "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": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "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": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "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": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "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_sequence": 1324 }, "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": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "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": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "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": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "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": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3255 }, "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": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_sequence": 2993 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 191 }, "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": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1727 }, "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": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "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": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "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 & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 2992 }, "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": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "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": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2989 }, "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": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2171 }, "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": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 824 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "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": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "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": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "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, "tippecanoe:retain_points_multiplier_sequence": 711 }, "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": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 710 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "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 & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "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": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "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 & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "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": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "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": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2560 }, "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": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "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": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 724 }, "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 & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "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 & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "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": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2386 }, "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": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "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_sequence": 2389 }, "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": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2388 }, "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": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2751 }, "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": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "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_sequence": 2734 }, "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": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2735 }, "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_sequence": 2084 }, "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": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2083 }, "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": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2383 }, "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": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "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": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "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_sequence": 2849 }, "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 & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "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 & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2839 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2852 }, "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": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2851 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "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 St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "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 Street & Shrader Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3346 }, "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": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "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": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2596 }, "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_sequence": 1529 }, "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 & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3366 }, "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_sequence": 1513 }, "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 & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "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": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "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": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2091 }, "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_sequence": 2846 }, "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": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "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": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2090 }, "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": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2841 }, "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": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "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": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "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": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "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": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3435 }, "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": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "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 & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "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": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2845 }, "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": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3437 }, "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": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3068 }, "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": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "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": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3434 }, "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": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3443 }, "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_sequence": 1504 }, "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": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "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": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1524 }, "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": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2088 }, "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": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "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 & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1510 }, "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_sequence": 1523 }, "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": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "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": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "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 & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "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 & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "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": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "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 & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2738 }, "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_sequence": 2754 }, "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": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2753 }, "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": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "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": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2838 }, "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": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "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": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "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": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "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": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "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": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "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_sequence": 1109 }, "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": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "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_sequence": 1161 }, "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": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "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": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2755 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "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 & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "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": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "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": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2739 }, "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": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "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_sequence": 1020 }, "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": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "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": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "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": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "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 & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "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": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "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_sequence": 1149 }, "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": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "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": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "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": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2837 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "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 & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "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 & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3436 }, "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_sequence": 1841 }, "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": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "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 & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "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": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1506 }, "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": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "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 & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "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": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "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 & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "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": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "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": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "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": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "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": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "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": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1484 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "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": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "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 & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "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": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "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": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1842 }, "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": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "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 & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "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_sequence": 1532 }, "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": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "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": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "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 & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "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_sequence": 1493 }, "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 & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "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": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "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": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "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_sequence": 2666 }, "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": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3094 }, "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": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "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": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 872 }, "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": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "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": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "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 & Waller St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "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": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "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_sequence": 742 }, "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": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 741 }, "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": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2662 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2229 }, "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 & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "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": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2228 }, "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": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 3235 }, "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": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "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": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "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": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 868 }, "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_sequence": 2225 }, "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": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2226 }, "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 & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 873 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 865 }, "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": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "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 & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "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": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "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": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "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": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "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 & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "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": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "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": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 3246 }, "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": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "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": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "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 & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "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 & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "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": "Haight St & Buena Vista West Ave", "tippecanoe:retain_points_multiplier_sequence": 1479 }, "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": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "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_sequence": 854 }, "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 & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "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": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 860 }, "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 & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 551 }, "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 & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 547 }, "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 & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "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 & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 546 }, "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": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 548 }, "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 & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2906 }, "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": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "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": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2500 }, "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 & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2499 }, "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": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "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": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "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": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "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": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2298 }, "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": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "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": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 955 }, "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": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "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": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "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": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 851 }, "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": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 928 }, "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": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 856 }, "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": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "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": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 857 }, "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": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2497 }, "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_sequence": 932 }, "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": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 931 }, "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": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 922 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 940 }, "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": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "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": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "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": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 921 }, "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 & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "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": "18th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "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": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 938 }, "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_sequence": 858 }, "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": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "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": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 923 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 934 }, "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 & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 933 }, "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": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "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": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 924 }, "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": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 925 }, "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 Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 667 }, "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": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "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": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "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": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2496 }, "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_sequence": 670 }, "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": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "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": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 247 }, "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 & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "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": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_sequence": 2502 }, "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": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "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_sequence": 1046 }, "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": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "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": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "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": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "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 St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3221 }, "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": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3109 }, "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": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3264 }, "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_sequence": 250 }, "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": "14th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "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 & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "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": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "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": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2046 }, "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": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "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 & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "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": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 3222 }, "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": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "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": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "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 & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2065 }, "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": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "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": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "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_sequence": 935 }, "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 & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "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": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 941 }, "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": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "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 & Market St", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "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": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "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": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "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": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "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": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "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": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "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_sequence": 1193 }, "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": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "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": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "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": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "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": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "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": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "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": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "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_sequence": 1036 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "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": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "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": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "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": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "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": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "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 & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "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": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "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": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "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_sequence": 2420 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "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 & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 3370 }, "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": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "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_sequence": 284 }, "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 & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "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": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "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": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "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": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "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": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "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": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "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": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2445 }, "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": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "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": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "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": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "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 & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "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 & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "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 & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "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": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "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": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "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": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2759 }, "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": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "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": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3379 }, "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": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "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_sequence": 243 }, "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": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "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": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "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": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "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_sequence": 358 }, "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 & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "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": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "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": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2983 }, "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": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "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": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "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 & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2856 }, "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 & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "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 Leave", "tippecanoe:retain_points_multiplier_sequence": 3375 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3204 }, "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": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2861 }, "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 Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "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 Station", "tippecanoe:retain_points_multiplier_sequence": 2859 }, "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 Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3099 }, "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": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2858 }, "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 t", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3453 }, "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": "Ulloa St & West Portal Ave Arrive", "tippecanoe:retain_points_multiplier_sequence": 3374 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "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 Station Inbound", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "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 Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3454 }, "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 Station", "tippecanoe:retain_points_multiplier_sequence": 2860 }, "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 & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2986 }, "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_sequence": 2981 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3143 }, "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_sequence": 2980 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2982 }, "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": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2988 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "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": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2940 }, "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 Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3154 }, "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": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "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": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "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": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 3056 }, "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": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 822 }, "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": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 806 }, "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": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "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": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 823 }, "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": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2173 }, "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_sequence": 3231 }, "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": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3232 }, "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": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "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": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "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": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3230 }, "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": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 3233 }, "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": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "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 Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "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": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "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": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 3008 }, "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 Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "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": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3009 }, "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 & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 3010 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3012 }, "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": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3013 }, "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 Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2401 }, "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 Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 2405 }, "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": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2402 }, "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 & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "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": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "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": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "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": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1724 }, "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": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "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": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2403 }, "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 & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "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": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "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 & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "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": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "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", "tippecanoe:retain_points_multiplier_sequence": 8 }, "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": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "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": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2633 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "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": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 349 }, "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": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2632 }, "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_sequence": 339 }, "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": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "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_sequence": 2488 }, "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": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2489 }, "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": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3489 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3300 }, "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": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "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/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2681 }, "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": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2490 }, "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": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "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/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2984 }, "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 AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3190 }, "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": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2680 }, "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": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3133 }, "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": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 323 }, "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": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "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": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "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": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "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": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2485 }, "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": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "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_sequence": 1635 }, "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 & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "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": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 3194 }, "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": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2147 }, "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 & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2685 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2683 }, "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 Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 2684 }, "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": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "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": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "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": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3334 }, "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_sequence": 2159 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3130 }, "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 & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2158 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "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": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3342 }, "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_sequence": 361 }, "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 & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "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 & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 321 }, "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": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3207 }, "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": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3208 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "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_sequence": 4 }, "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 Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3103 }, "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 Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 325 }, "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 & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "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": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "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": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3382 }, "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": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 322 }, "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": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "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": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 320 }, "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": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1550 }, "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": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 573 }, "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": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "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": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "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 & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3129 }, "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": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 2161 }, "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, "tippecanoe:retain_points_multiplier_sequence": 986 }, "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&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 3270 }, "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&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3271 }, "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_sequence": 3184 }, "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 & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "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": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 1888 }, "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": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "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 & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 3054 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3052 }, "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": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3053 }, "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 & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "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 & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "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": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1887 }, "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": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3051 }, "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 & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "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_sequence": 2289 }, "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": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2288 }, "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 & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "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 & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "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": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "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 & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2160 }, "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 & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 2144 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2148 }, "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": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 3127 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "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": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "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 & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "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 & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "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 & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "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": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2151 }, "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": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 3128 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2294 }, "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": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2295 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2150 }, "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_sequence": 2137 }, "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": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2149 }, "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 & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 3183 }, "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 & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "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": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 1451 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "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 & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "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": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2283 }, "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": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "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": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "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 & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "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": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "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": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "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": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2299 }, "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 & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2625 }, "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": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "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": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "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": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "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": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 3011 }, "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": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2406 }, "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": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2809 }, "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": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2626 }, "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": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2400 }, "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": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "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": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 958 }, "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": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2376 }, "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": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 937 }, "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": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "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": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 927 }, "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": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "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": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_sequence": 930 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "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": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "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": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "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": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "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": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "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": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "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": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "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": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 3422 }, "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": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3185 }, "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": "Portola Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "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": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2318 }, "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": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "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 & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "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": "Clipper St & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 853 }, "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": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3210 }, "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": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "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": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 979 }, "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": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 2802 }, "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": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "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 & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2808 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "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": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2804 }, "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": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2493 }, "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": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2810 }, "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": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "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": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "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": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "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": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 3254 }, "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": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "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": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "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": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1894 }, "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_sequence": 2179 }, "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": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "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 & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2803 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "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 & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2797 }, "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 & Bella Vista Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2796 }, "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": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2807 }, "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": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2794 }, "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_sequence": 2182 }, "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": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2181 }, "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": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "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": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "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": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "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": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1470 }, "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": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "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": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 444 }, "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": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "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": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "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": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "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": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "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": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "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": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "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": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "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": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "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": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "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": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "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 & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "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_sequence": 1074 }, "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": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "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 & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "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": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "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": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "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": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "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 & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "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_sequence": 3228 }, "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": "24th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "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": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "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": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "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": "25th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "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 & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "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 & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "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_sequence": 1083 }, "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 & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "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 & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "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 & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "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": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "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": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3241 }, "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 & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "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": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "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 Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "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 & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "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 & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "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 & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "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 St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "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 Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "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 St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "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 & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "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 Way", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "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 Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "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": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "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 & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "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": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "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 & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "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 & Arbor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "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_sequence": 1102 }, "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 & Sussex St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "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": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "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": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "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": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "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": "164 Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "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": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "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": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "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 & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1272 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "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": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "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 & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1881 }, "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": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "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 & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "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": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2253 }, "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": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "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": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1659 }, "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": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "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": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "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": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1879 }, "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": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "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_sequence": 2799 }, "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": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2801 }, "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": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2795 }, "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 & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "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": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 2806 }, "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": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "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": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2811 }, "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 & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1875 }, "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": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1873 }, "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)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2256 }, "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": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "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": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2145 }, "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 LOOP", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "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 AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2251 }, "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": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3085 }, "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": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "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": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "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": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "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": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "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": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1554 }, "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 & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "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": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "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_sequence": 1433 }, "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": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "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": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "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": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "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&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3490 }, "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/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2140 }, "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": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3088 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2529 }, "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": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "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": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "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": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 3158 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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_sequence": 1892 }, "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": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "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_sequence": 47 }, "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, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "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/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "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": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "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_sequence": 2522 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "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": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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_sequence": 42 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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_sequence": 3162 }, "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": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "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_sequence": 2573 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3163 }, "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": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_sequence": 3429 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3157 }, "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": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 3428 }, "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": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2155 }, "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_sequence": 2530 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "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 & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "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": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "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": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "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 & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "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 & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "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": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1872 }, "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_sequence": 3090 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "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 & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3091 }, "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": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "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": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "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": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "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": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "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": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 580 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "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": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "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 & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 777 }, "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": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 781 }, "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": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "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": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "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": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "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": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "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": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "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_sequence": 2599 }, "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": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2600 }, "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 & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "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_sequence": 2537 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2538 }, "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 & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 3092 }, "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": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "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_sequence": 2152 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "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 & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 3397 }, "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": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2141 }, "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": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 3105 }, "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 & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "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": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "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": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "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 St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3446 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "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": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 36 }, "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": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "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 & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "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 & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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 & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "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 & Francis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "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": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "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": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "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": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "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 & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "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": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "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 & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "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_sequence": 2241 }, "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": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2240 }, "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": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "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": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "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 St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "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": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "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 St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "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 OUT OB", "tippecanoe:retain_points_multiplier_sequence": 11 }, "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, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 20 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1901 }, "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": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1900 }, "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": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "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": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "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": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1902 }, "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 & Bay St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "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": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "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": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "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 & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3427 }, "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": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "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": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "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": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1907 }, "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": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3155 }, "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": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "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": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "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": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2362 }, "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 & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "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": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "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": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "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": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 764 }, "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": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "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": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "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": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "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 & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "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_sequence": 762 }, "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 & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 763 }, "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": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "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": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2884 }, "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": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "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": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3478 }, "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_sequence": 2872 }, "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": "Union St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2871 }, "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_sequence": 2925 }, "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": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2924 }, "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": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3345 }, "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": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3487 }, "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": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3420 }, "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_sequence": 1908 }, "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": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "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": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2305 }, "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": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "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": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 771 }, "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": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2910 }, "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": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 772 }, "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": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1906 }, "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_sequence": 2301 }, "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 & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "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": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "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": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2917 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "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": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "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": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2935 }, "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": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "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": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "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 & Union St", "tippecanoe:retain_points_multiplier_sequence": 2314 }, "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 & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2303 }, "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": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "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 & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "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 & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "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": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "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 & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2997 }, "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": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "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 & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "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 & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "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 & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "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": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "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": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2936 }, "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": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "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": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "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": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2907 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2200 }, "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_sequence": 3206 }, "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": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2201 }, "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 & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2300 }, "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": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "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_sequence": 2192 }, "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": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "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_sequence": 2920 }, "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": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2921 }, "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": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "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": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "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": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2911 }, "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": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "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": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "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": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2316 }, "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": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3002 }, "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": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "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": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "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": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2544 }, "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": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 821 }, "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": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "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 & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2931 }, "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": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2908 }, "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": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 733 }, "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": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "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": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "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": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2311 }, "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 & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3147 }, "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": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "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": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2930 }, "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": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3495 }, "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 & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "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 & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1576 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "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": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "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 St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "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 OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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 IN IB", "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1580 }, "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": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1581 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2879 }, "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": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "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": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "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": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2875 }, "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": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "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": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2876 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "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 & Green St", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "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": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1596 }, "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_sequence": 2881 }, "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 & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "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": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2877 }, "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 & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "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": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "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": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "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": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2785 }, "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 & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 890 }, "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 & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 3173 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "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": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 885 }, "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": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "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": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2356 }, "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 & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "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": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "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": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "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": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2355 }, "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": "Stockton St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2694 }, "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": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "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_sequence": 1815 }, "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": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1814 }, "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_sequence": 2887 }, "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": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "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 & Union St", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "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": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "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": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 891 }, "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_sequence": 2868 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "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": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2867 }, "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 & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "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_sequence": 1812 }, "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": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "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": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1572 }, "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 & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "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": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2186 }, "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_sequence": 1590 }, "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": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1589 }, "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_sequence": 1645 }, "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 & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "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": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "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": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "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": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "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": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "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": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2190 }, "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": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "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": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "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": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "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": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "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": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "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": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "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": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "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": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "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 & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "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_sequence": 708 }, "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": "California St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 709 }, "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": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3494 }, "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": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "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": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2546 }, "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 & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1592 }, "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": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "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": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "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": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "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": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "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": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "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": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "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": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1591 }, "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": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 663 }, "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": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2741 }, "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": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "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": "Sutter St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2744 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2187 }, "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 & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2199 }, "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": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2198 }, "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": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "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 & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2999 }, "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": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3004 }, "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": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 820 }, "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": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "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_sequence": 1822 }, "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 & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1821 }, "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_sequence": 1819 }, "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": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "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": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1649 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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_sequence": 2195 }, "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": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "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": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2359 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 26 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3001 }, "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": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 3000 }, "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": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "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 & Mason St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "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": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 817 }, "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": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2547 }, "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 & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "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": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "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 & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "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": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "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": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "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": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "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 & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "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": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "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 & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2757 }, "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": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2747 }, "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": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3371 }, "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": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "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": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1904 }, "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": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "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_sequence": 3110 }, "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": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3237 }, "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 & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1747 }, "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": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "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 & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2693 }, "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": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2691 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "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": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "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": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2790 }, "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_sequence": 2791 }, "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": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2792 }, "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": "COIT TOWER", "tippecanoe:retain_points_multiplier_sequence": 864 }, "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": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "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": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2697 }, "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": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "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": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2689 }, "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 & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "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": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 889 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2874 }, "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": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "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": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "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 & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 3176 }, "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": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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 & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2878 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2888 }, "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": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2889 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "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": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 877 }, "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": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "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 & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "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": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "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": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "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": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3234 }, "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": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "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": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "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": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "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": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "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 & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "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": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "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": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "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": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "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 & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "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": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "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": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "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": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "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": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "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": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "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": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3444 }, "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 & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3471 }, "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 & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2695 }, "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": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2698 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "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 & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2353 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2370 }, "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": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "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": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "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": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "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": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "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": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 882 }, "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": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 883 }, "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": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 810 }, "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": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "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": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "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": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "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 & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "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": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 706 }, "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 & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "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": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "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_sequence": 2352 }, "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": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "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 & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 19 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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 & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 18 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "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": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "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": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 730 }, "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_sequence": 2350 }, "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": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2349 }, "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": "Sutter St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2750 }, "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 & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "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_sequence": 2367 }, "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": "Powell St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2368 }, "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": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2696 }, "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": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "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": "Post St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "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": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "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 St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "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": "POST & GRANT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3419 }, "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": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "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": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3003 }, "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": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "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": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2552 }, "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": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "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": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "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": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 716 }, "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 & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "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": "Clay St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "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 & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2568 }, "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": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2562 }, "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": "California St & SANSOME ST", "tippecanoe:retain_points_multiplier_sequence": 726 }, "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": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2563 }, "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 & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 725 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 689 }, "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 & Battery St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "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": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "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": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "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": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 666 }, "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 & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1398 }, "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": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "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": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "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": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "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": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "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": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2268 }, "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 & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3251 }, "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": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2752 }, "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": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 662 }, "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": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_sequence": 3179 }, "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 & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "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 & 1st St", "tippecanoe:retain_points_multiplier_sequence": 3229 }, "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": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2027 }, "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": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "Market St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2067 }, "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 & Market St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 3360 }, "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": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "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_sequence": 1168 }, "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 & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "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_sequence": 1183 }, "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/Pier 5", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "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": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "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": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "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": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "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": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "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": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "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": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2270 }, "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": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "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": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3368 }, "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": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "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": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3245 }, "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": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "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": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "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 & Main St", "tippecanoe:retain_points_multiplier_sequence": 2062 }, "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 & BEALE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "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": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "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 & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "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/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3073 }, "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": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3236 }, "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": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 31 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3175 }, "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": "Spear St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2661 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3209 }, "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": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "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_sequence": 48 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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": "EMBARCADERO & ST", "tippecanoe:retain_points_multiplier_sequence": 3218 }, "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": "Main St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "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 & Market St", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "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": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "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": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 41 }, "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": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "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 & Donchee Way", "tippecanoe:retain_points_multiplier_sequence": 3508 }, "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": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "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": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "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_sequence": 2678 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2676 }, "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": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2677 }, "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": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3414 }, "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": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 3506 }, "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": "Market St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "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": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "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 & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "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": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "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": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 3338 }, "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": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "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": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "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": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3507 }, "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": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1796 }, "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 & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3457 }, "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 & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "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": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "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": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "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": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "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_sequence": 3389 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "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": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3387 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "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": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "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_sequence": 3469 }, "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.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3380 }, "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_sequence": 3381 }, "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": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3386 }, "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": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "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": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "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": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_sequence": 3243 }, "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": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2022 }, "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": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "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": "Hward St&Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3416 }, "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": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "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": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "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": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "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": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "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": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 3385 }, "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": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3503 }, "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_sequence": 1172 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "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_sequence": 1175 }, "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": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "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": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "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&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3484 }, "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 & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3150 }, "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": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3310 }, "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 & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "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 & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "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": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1475 }, "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": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "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 H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 3365 }, "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 & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "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 & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 557 }, "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": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3065 }, "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 C", "tippecanoe:retain_points_multiplier_sequence": 223 }, "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 D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3377 }, "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": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 224 }, "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 & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "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 M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "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 & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3364 }, "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 H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "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": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "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": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2815 }, "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": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "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 & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3363 }, "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 & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 559 }, "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": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "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 H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "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": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 734 }, "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": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3340 }, "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 St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "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 Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3223 }, "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 St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "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": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3224 }, "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": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 562 }, "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": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "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": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 3225 }, "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": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "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": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 3226 }, "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": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "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_sequence": 2736 }, "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": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2737 }, "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": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2745 }, "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 & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2746 }, "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": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "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": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "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": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "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": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "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 & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "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": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "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": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2740 }, "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": "Post St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "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": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "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": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "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": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2758 }, "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": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2933 }, "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": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "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": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "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_sequence": 2915 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "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": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3497 }, "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": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2169 }, "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_sequence": 2929 }, "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 & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "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": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_sequence": 3445 }, "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": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "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": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "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": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2912 }, "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": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2913 }, "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": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2854 }, "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": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 982 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "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_sequence": 1856 }, "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": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1857 }, "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": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "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": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1516 }, "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_sequence": 1244 }, "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": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "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": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1535 }, "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_sequence": 1850 }, "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": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "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": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "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": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "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": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "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 & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "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_sequence": 3396 }, "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": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "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": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1477 }, "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": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "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": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "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 & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "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": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1519 }, "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": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "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": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "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": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2132 }, "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": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2203 }, "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": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "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": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3331 }, "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": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "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": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "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": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "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": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3455 }, "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": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2053 }, "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": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 2973 }, "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": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2054 }, "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": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "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": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2312 }, "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": "Sutter St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2749 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2310 }, "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": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "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": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2743 }, "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 & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "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": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "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": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "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": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "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": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "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": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "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": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "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": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "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_sequence": 1164 }, "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": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "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": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2934 }, "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": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "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": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2848 }, "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": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2922 }, "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": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1855 }, "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": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "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_sequence": 1853 }, "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": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1854 }, "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_sequence": 1153 }, "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": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "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": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2843 }, "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": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "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": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "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": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1594 }, "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": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "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": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1847 }, "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": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "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": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1587 }, "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": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "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": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "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": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "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": "Jones St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "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": "Post St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2411 }, "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": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1668 }, "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": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "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": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "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": "Ellis St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "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": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2164 }, "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": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "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": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "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": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "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": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3400 }, "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": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "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": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3261 }, "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": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_sequence": 3250 }, "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 & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "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": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "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": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2844 }, "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": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 980 }, "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": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2842 }, "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 & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3395 }, "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": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "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 N", "tippecanoe:retain_points_multiplier_sequence": 3333 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2036 }, "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 & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "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 & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "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": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "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": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3367 }, "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": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "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": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "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": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "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": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "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": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2919 }, "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": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3086 }, "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_sequence": 2927 }, "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": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "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": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3081 }, "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": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2923 }, "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": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "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/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3326 }, "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_sequence": 238 }, "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": "11th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "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": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "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": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "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_sequence": 2060 }, "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 & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "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": "Market St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "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": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "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": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "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": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3498 }, "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": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 32 }, "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": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3384 }, "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": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "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": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3249 }, "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": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "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": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "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": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "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": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1967 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "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": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3332 }, "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 AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 3415 }, "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": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "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": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2056 }, "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": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "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": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "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 & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1965 }, "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": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "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": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 3145 }, "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": "8th St&Howard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3417 }, "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": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "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": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "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_sequence": 1283 }, "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": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "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": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "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": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "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": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "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": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "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": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3499 }, "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": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "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": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "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": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 3161 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "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": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 3108 }, "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 & SANCHEZ ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "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": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "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 & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "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": "Church St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 3262 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "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": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "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": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "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": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "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": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "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": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "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": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 803 }, "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": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2657 }, "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 & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "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_sequence": 3142 }, "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": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2068 }, "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": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "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": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3509 }, "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": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "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 & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "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_sequence": 271 }, "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": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "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": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "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": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2055 }, "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_sequence": 2971 }, "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 & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "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 & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2949 }, "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": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "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_sequence": 273 }, "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": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "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 & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2951 }, "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": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "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": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "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 & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "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": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2954 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "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": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "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": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "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": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "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": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2480 }, "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": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "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": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3069 }, "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": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "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": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3070 }, "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_sequence": 2486 }, "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/Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "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": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "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": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 790 }, "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": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "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 & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "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 & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "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": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "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": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2955 }, "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": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2956 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "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_sequence": 2959 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2960 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2961 }, "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 & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2962 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "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": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2963 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1968 }, "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": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "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": "14th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3405 }, "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": "15th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "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": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "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 & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "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_sequence": 1971 }, "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": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1972 }, "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_sequence": 276 }, "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": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "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 & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3125 }, "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": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1973 }, "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": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 3403 }, "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": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3413 }, "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 & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3406 }, "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 & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3240 }, "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_sequence": 280 }, "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": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "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 & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "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": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "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 & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "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": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "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 & 11th St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "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": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "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": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "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": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "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": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "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": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "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": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "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": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "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_sequence": 605 }, "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 & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "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": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "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": "18th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1974 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1975 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "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": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1977 }, "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 & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 3412 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3407 }, "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": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3411 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "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_sequence": 1979 }, "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 & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "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": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3408 }, "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": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3410 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "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_sequence": 1290 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "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": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 3442 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "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": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "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": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "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": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "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 & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2358 }, "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": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "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": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "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": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3199 }, "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": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "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": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "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": "Mason & Turk", "tippecanoe:retain_points_multiplier_sequence": 3500 }, "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": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3253 }, "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_sequence": 3256 }, "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": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "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": "Ellis street & Powell street", "tippecanoe:retain_points_multiplier_sequence": 3468 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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 STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 24 }, "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 St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "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 & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_sequence": 3260 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 23 }, "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": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2041 }, "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": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "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": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "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": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 3064 }, "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": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2066 }, "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": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2692 }, "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": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1359 }, "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": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "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": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2030 }, "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": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 2690 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2032 }, "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": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "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": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "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": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3196 }, "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": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "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": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3402 }, "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 & Mary St", "tippecanoe:retain_points_multiplier_sequence": 3301 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1962 }, "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": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1961 }, "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": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "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_sequence": 1960 }, "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": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1959 }, "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": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1667 }, "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": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "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": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "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 & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "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_sequence": 2058 }, "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 & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2057 }, "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": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1956 }, "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": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3502 }, "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": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 3343 }, "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": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1957 }, "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": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "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": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "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_sequence": 3327 }, "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 & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3328 }, "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": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "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": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "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 & Third St", "tippecanoe:retain_points_multiplier_sequence": 3160 }, "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": "Folsom St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "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": "4th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "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": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3198 }, "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 & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "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": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "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": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "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 & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "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": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "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 & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "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": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "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": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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 & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "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 & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "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": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "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": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "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 & 8th St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "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": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 601 }, "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": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3146 }, "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": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "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": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "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": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3421 }, "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": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "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": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3401 }, "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": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3265 }, "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 & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "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": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 597 }, "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 & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "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": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "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 & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2828 }, "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": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2827 }, "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": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3359 }, "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": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "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": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 3075 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3376 }, "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": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "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": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "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": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 3504 }, "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": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "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": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "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": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "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": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3501 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "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": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "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": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 587 }, "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": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 3186 }, "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 & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3505 }, "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": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "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": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3149 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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 & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "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": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "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_sequence": 1714 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "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": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3242 }, "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": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "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": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "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_sequence": 3470 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "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 & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3215 }, "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_sequence": 2822 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "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": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2824 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3062 }, "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_sequence": 177 }, "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": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "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_sequence": 1717 }, "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": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1716 }, "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 & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 3167 }, "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 & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3321 }, "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 & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 3299 }, "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": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3164 }, "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 & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "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": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3151 }, "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_sequence": 33 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "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": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2821 }, "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": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "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": "3rd Street & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3309 }, "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": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 172 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3269 }, "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": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 3268 }, "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": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3292 }, "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": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "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": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3293 }, "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": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3461 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2346 }, "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 & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2345 }, "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&15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3248 }, "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": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "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": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 278 }, "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 & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "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_sequence": 2332 }, "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": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2333 }, "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": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 279 }, "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 & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "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_sequence": 2979 }, "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 & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "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": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2975 }, "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": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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 & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "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": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "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 & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2460 }, "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": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2461 }, "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": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "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": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "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, "tippecanoe:retain_points_multiplier_sequence": 295 }, "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": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 294 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "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": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "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": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3458 }, "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": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "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": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2464 }, "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_sequence": 292 }, "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": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "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": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "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": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1709 }, "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": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "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": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3459 }, "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_sequence": 297 }, "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": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "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": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2335 }, "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": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "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": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "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": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "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": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "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": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "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 & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "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_sequence": 615 }, "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": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "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": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2339 }, "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": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 3493 }, "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/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "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": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2340 }, "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": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "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": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2977 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2465 }, "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": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "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 & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "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_sequence": 370 }, "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 & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "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": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2467 }, "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": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "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": "Southern Heights Ave & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2594 }, "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": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2595 }, "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": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2593 }, "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": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "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": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3028 }, "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": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "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_sequence": 400 }, "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 & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "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": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 397 }, "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": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3203 }, "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": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "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 & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "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": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "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": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 743 }, "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 & Carolina St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "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": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "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 & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3029 }, "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": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3037 }, "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": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "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": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3030 }, "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": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3464 }, "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": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3104 }, "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_sequence": 893 }, "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 & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 894 }, "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_sequence": 895 }, "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": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "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_sequence": 316 }, "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 & Texas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "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": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 313 }, "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": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3462 }, "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 Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 3463 }, "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": "16th St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3460 }, "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": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 3182 }, "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": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3267 }, "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_sequence": 3291 }, "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": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3294 }, "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": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "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/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "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": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "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": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3080 }, "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 St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3311 }, "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": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3295 }, "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": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3169 }, "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": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2793 }, "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": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "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": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "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 & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3165 }, "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": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "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": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 897 }, "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_sequence": 368 }, "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": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "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": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "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": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1948 }, "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": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2813 }, "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": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2814 }, "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 & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "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": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "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 & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "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_sequence": 3034 }, "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 & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3035 }, "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": "Wisconsin St & Coral Rd", "tippecanoe:retain_points_multiplier_sequence": 3036 }, "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": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3357 }, "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_sequence": 3358 }, "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": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "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": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "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": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "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_sequence": 1952 }, "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": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "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": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "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": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 3144 }, "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": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "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_sequence": 133 }, "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": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "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": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3290 }, "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": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "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": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3296 }, "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": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "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_sequence": 135 }, "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": "3RD ST & 22ND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3180 }, "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": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "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": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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 & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "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": "22nd St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "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": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 3347 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "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": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "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": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3289 }, "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": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 3170 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "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 & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "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": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "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_sequence": 791 }, "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 & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "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_sequence": 796 }, "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": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 797 }, "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": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "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 & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2101 }, "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_sequence": 2102 }, "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": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "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": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "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 & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "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": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2104 }, "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 & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "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": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "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": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3106 }, "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 & 29th St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "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, "tippecanoe:retain_points_multiplier_sequence": 798 }, "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": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 3107 }, "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": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "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_sequence": 3263 }, "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": "Church St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "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_sequence": 3063 }, "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": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "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": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "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 & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "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": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "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": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "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": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3047 }, "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 & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 775 }, "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": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "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 & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "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": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "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": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "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": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "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_sequence": 1988 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "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": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1987 }, "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 & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "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": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "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& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3451 }, "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 & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "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 Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "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& Randall St", "tippecanoe:retain_points_multiplier_sequence": 3452 }, "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": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "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 & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 1992 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "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": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "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": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "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": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 919 }, "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": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2965 }, "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_sequence": 423 }, "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": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "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": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "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": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "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": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2966 }, "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": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2967 }, "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": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "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": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 422 }, "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": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3409 }, "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": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 421 }, "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": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "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": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3404 }, "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": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "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 & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2968 }, "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": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "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 St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 3378 }, "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": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3447 }, "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": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1985 }, "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": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3361 }, "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_sequence": 2012 }, "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": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2011 }, "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": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 2972 }, "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 & Power St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3515 }, "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 & Fair Ave", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "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": "Mission St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2021 }, "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": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 755 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "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_sequence": 1294 }, "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": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3258 }, "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": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "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": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "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": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "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": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3257 }, "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": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "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": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "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": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 752 }, "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 & Cesar Chavz St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3448 }, "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 & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "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 & Bessie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "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 & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "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": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "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_sequence": 753 }, "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": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 754 }, "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": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3450 }, "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": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "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": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 910 }, "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 & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "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 & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "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_sequence": 907 }, "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": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "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 & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "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": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "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": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3372 }, "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": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "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": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "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_sequence": 913 }, "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 & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "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": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "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 & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3213 }, "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 & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 3212 }, "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 & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "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": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "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, "tippecanoe:retain_points_multiplier_sequence": 917 }, "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": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "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": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "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 & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "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": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3197 }, "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": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "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": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "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": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 2686 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "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": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 581 }, "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": "4080 Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1989 }, "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": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "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": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "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": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "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_sequence": 2019 }, "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": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "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": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2614 }, "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": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "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_sequence": 2616 }, "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": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2615 }, "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": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2833 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "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_sequence": 3336 }, "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 & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3339 }, "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": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 2608 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "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": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 949 }, "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 & College Ave", "tippecanoe:retain_points_multiplier_sequence": 946 }, "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": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "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_sequence": 2606 }, "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": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "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": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2834 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "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": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 3188 }, "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": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "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": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "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": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "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_sequence": 2247 }, "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": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2246 }, "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": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "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 & Athens St", "tippecanoe:retain_points_multiplier_sequence": 2237 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "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": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "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": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "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": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "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": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "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": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 2075 }, "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": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "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": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "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": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "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": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "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": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2374 }, "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": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2249 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "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 & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 566 }, "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": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 568 }, "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 & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "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": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 3219 }, "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": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2372 }, "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_sequence": 37 }, "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 & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2475 }, "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 & Murray St", "tippecanoe:retain_points_multiplier_sequence": 950 }, "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 & Roscoe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 954 }, "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": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 951 }, "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": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "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": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 944 }, "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 & Andover St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "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": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3424 }, "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": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "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": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3074 }, "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": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "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 & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2605 }, "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": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2618 }, "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_sequence": 3418 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3193 }, "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 & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "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": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "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 & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "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": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "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": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3391 }, "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": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 525 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "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": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "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": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2609 }, "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": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "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": "University St & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2901 }, "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": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "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 & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "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 & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "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": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "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_sequence": 1805 }, "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": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1806 }, "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 & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2900 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2898 }, "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 & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "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": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2904 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3041 }, "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": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 3042 }, "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": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2902 }, "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": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 3046 }, "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 & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "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": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1810 }, "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": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "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": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "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": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "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": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "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": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "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 & 25th St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "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": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 620 }, "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": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 418 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2341 }, "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": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2342 }, "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": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "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_sequence": 2344 }, "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": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "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": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 3449 }, "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": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "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": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "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": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "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": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "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 & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "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_sequence": 450 }, "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": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "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": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 642 }, "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 & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "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_sequence": 589 }, "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": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "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": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 644 }, "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": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "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": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 633 }, "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": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 915 }, "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 & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 639 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3259 }, "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 & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 634 }, "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 & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "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": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "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": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "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 & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 3083 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "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": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "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 & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2816 }, "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 & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "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": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2818 }, "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 & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1599 }, "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": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1598 }, "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": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "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": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2620 }, "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": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "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_sequence": 447 }, "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": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "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": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3033 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "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": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "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": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "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": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "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, "tippecanoe:retain_points_multiplier_sequence": 901 }, "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": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "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 St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "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": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_sequence": 3349 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "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 & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "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": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "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_sequence": 3348 }, "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": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3350 }, "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": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "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 & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1666 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "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": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "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": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "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": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2619 }, "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": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2219 }, "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": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "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": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2218 }, "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 & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2264 }, "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": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "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": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 3238 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "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": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "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": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "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_sequence": 3298 }, "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": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3287 }, "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": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 3168 }, "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": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "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_sequence": 3171 }, "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 & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "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": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "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 & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2261 }, "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_sequence": 2262 }, "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": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2263 }, "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 & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 3303 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3304 }, "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": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 3302 }, "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": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1921 }, "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 & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "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": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "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_sequence": 3317 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3286 }, "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": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 3325 }, "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": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "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 & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3465 }, "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": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3466 }, "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 & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "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": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "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_sequence": 3318 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3285 }, "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": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 3324 }, "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": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "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_sequence": 2622 }, "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": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "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": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "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_sequence": 647 }, "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": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "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 & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2613 }, "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": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 2612 }, "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 & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2580 }, "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": "San Bruno Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "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": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3512 }, "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_sequence": 570 }, "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": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "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 & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 2601 }, "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&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3239 }, "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_sequence": 2624 }, "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": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2623 }, "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_sequence": 595 }, "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": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "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": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 637 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2576 }, "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_sequence": 2577 }, "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": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2578 }, "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_sequence": 69 }, "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": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "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": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "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 & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2267 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "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": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "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": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "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_sequence": 72 }, "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": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "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": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "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 & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3040 }, "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_sequence": 3045 }, "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": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3044 }, "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": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "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": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3043 }, "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_sequence": 572 }, "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": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "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 & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1800 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1804 }, "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 & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1802 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "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": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "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 & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2590 }, "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 & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2589 }, "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 & Dwight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "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": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "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": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "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": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 3473 }, "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 & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "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": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1798 }, "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 & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "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": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "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": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "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": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "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": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2581 }, "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": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3472 }, "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": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "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": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "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": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 596 }, "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 & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2832 }, "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": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2831 }, "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 & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "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": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "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": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3039 }, "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": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 169 }, "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": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "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": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "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": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2217 }, "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": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "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": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3084 }, "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": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 158 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3319 }, "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": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 3323 }, "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 & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "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_sequence": 160 }, "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": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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_sequence": 2204 }, "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": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "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": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3320 }, "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": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 3284 }, "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": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2508 }, "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": "3rd St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 163 }, "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": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "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": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 157 }, "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": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "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": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2514 }, "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": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3305 }, "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": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2513 }, "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": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2214 }, "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 & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 165 }, "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": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "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": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3038 }, "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": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3172 }, "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_sequence": 3282 }, "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": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3281 }, "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": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "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": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2944 }, "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": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "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": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2943 }, "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": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3329 }, "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_sequence": 141 }, "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": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3252 }, "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": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3280 }, "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 & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "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_sequence": 144 }, "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 & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "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": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 3266 }, "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": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3474 }, "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": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 2233 }, "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 & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "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": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "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 Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3278 }, "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 St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3306 }, "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": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3322 }, "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": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3279 }, "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": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_sequence": 3283 }, "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": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "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 Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "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": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3330 }, "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 & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "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": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "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 & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "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": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2941 }, "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": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "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": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "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": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3351 }, "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": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3355 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3352 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3341 }, "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 St & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3308 }, "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_sequence": 3297 }, "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 Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3288 }, "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": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 3307 }, "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": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "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_sequence": 1051 }, "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": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "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": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 3337 }, "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 & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1934 }, "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_sequence": 1936 }, "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": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "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": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "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 & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1933 }, "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/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "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": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "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": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 3111 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1563 }, "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": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "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": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "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 & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "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/US Post Office", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3191 }, "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": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "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": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1561 }, "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": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "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": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "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": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "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": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 3431 }, "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": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "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": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "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": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "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_sequence": 2213 }, "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": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2212 }, "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_sequence": 1711 }, "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": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "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 & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1919 }, "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": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "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": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "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": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 744 }, "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": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "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": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1758 }, "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_sequence": 3048 }, "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": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3049 }, "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": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "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": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "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": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2511 }, "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": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "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": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2210 }, "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": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "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": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "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": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2209 }, "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": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "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": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "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_sequence": 1565 }, "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": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "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": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1558 }, "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": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "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 & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "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": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 3178 }, "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": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "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_sequence": 1606 }, "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": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "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": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "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": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "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": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "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 & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "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": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "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": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2128 }, "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": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "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": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "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 & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "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": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "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_sequence": 1605 }, "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 & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "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": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "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": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "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 & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1601 }, "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 Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1600 }, "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": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1617 }, "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": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "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 ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3159 }, "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": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2660 }, "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": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2454 }, "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": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "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": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3153 }, "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": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "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": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "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": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "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 Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "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": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "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": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 532 }, "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": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "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": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 3481 }, "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": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "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 community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3488 }, "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": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3485 }, "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 & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "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": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3216 }, "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": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "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": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "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": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 862 }, "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": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 861 }, "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": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "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": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "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": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "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": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "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": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 785 }, "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": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3482 }, "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": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "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": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "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 & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "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": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1632 }, "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": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2452 }, "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 NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3483 }, "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": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3486 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "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": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 3491 }, "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 RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "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": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "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 & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3156 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "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 & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2449 }, "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_sequence": 2450 }, "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": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2451 }, "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": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "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 & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2293 }, "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 & Montana St", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "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 & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "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": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "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": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "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": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3211 }, "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": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "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": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2280 }, "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 & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 2535 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3132 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3134 }, "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_sequence": 2524 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3135 }, "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_sequence": 2515 }, "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 & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2516 }, "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_sequence": 2518 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "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": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2008 }, "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 & Allison St", "tippecanoe:retain_points_multiplier_sequence": 1990 }, "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": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "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": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2003 }, "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": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "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": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "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": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "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": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "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 & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "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": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "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 & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1916 }, "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": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "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": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2078 }, "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 & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "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": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "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_sequence": 2504 }, "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": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "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": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2239 }, "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": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "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": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2733 }, "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": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2732 }, "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": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2946 }, "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 & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3077 }, "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": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3098 }, "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 & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3274 }, "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": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3275 }, "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_sequence": 2948 }, "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 & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "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": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3072 }, "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": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "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": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "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 & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3095 }, "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": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3096 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3102 }, "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": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3101 }, "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": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "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": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 3087 }, "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 & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3273 }, "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": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3272 }, "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": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "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": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3015 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "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 & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 3020 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3018 }, "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": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 3019 }, "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": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "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_sequence": 3016 }, "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": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3100 }, "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": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "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": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "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 & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 636 }, "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": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "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_sequence": 2585 }, "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 & SOMERSET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3181 }, "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": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "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 & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "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": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "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": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "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": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "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 & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "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": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3277 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3055 }, "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 Castro Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2098 }, "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 Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2099 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3057 }, "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 Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2100 }, "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": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3174 }, "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": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 3059 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3201 }, "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", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "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 Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3200 }, "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/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3060 }, "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 Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3061 }, "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 Church Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3058 }, "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": "Feature", "properties": { "name": "Metro Powell Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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_sequence": 1 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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_sequence": 3 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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_sequence": 5 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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_sequence": 7 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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_sequence": 9 }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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/Visitor's Center", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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/Youth Hostel", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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/Visitor Center", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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 & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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, "tippecanoe:retain_points_multiplier_sequence": 199 }, "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": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "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": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "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 & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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 & Acevedo Ave .", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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 NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "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 & Tapia Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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 NS/W-SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "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": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "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": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "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": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "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": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "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": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "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, "tippecanoe:retain_points_multiplier_sequence": 446 }, "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, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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 Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "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 Avenue & Holloway St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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 Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "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": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "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": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "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, "tippecanoe:retain_points_multiplier_sequence": 99 }, "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&Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "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, "tippecanoe:retain_points_multiplier_sequence": 100 }, "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&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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, "tippecanoe:retain_points_multiplier_sequence": 471 }, "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 & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "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, "tippecanoe:retain_points_multiplier_sequence": 98 }, "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": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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 & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "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, "tippecanoe:retain_points_multiplier_sequence": 178 }, "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 & JULES AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "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 & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "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, "tippecanoe:retain_points_multiplier_sequence": 174 }, "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 & Capitol AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "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 & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "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 & Granada Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "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": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "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 & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "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": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "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": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "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 & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "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 & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "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": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "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": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "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": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "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": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "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": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "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": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "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/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "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": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "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, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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, "tippecanoe:retain_points_multiplier_sequence": 328 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "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/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "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": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "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, "tippecanoe:retain_points_multiplier_sequence": 331 }, "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, "tippecanoe:retain_points_multiplier_sequence": 451 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "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, "tippecanoe:retain_points_multiplier_sequence": 128 }, "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": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "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 & SAN JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "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": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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, "tippecanoe:retain_points_multiplier_sequence": 355 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "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": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "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, "tippecanoe:retain_points_multiplier_sequence": 329 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "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, "tippecanoe:retain_points_multiplier_sequence": 150 }, "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 & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "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 at Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "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, "tippecanoe:retain_points_multiplier_sequence": 136 }, "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": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "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 & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "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, "tippecanoe:retain_points_multiplier_sequence": 257 }, "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": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "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": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "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, "tippecanoe:retain_points_multiplier_sequence": 284 }, "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 & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "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, "tippecanoe:retain_points_multiplier_sequence": 277 }, "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 & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "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, "tippecanoe:retain_points_multiplier_sequence": 64 }, "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 & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "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": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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 & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "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": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "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": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "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": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "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": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 478 }, "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": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "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, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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 & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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, "tippecanoe:retain_points_multiplier_sequence": 222 }, "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 & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "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 & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "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 & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "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, "tippecanoe:retain_points_multiplier_sequence": 215 }, "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 & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "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 & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "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, "tippecanoe:retain_points_multiplier_sequence": 225 }, "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 & Somerset St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "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, "tippecanoe:retain_points_multiplier_sequence": 212 }, "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 & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "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": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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, "tippecanoe:retain_points_multiplier_sequence": 363 }, "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": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "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": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "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 & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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, "tippecanoe:retain_points_multiplier_sequence": 497 }, "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 Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "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 St & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "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": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "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": "3rd St & Key St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "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": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "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": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "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, "tippecanoe:retain_points_multiplier_sequence": 197 }, "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": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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, "tippecanoe:retain_points_multiplier_sequence": 195 }, "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": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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, "tippecanoe:retain_points_multiplier_sequence": 193 }, "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": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "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 & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "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, "tippecanoe:retain_points_multiplier_sequence": 144 }, "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 Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "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": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "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 & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "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": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "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": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "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, "tippecanoe:retain_points_multiplier_sequence": 148 }, "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": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "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": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "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": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "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 community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "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": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "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": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "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": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "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": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "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": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "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": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "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": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "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": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "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, "tippecanoe:retain_points_multiplier_sequence": 142 }, "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": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "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, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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, "tippecanoe:retain_points_multiplier_sequence": 30 }, "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": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "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 & Cambon Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "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": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "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": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "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": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "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, "tippecanoe:retain_points_multiplier_sequence": 422 }, "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 & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "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": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "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 & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "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 NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "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": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "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, "tippecanoe:retain_points_multiplier_sequence": 87 }, "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 & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "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": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "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": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "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 & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "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/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "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": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "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, "tippecanoe:retain_points_multiplier_sequence": 460 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "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": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "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": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "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": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "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": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "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": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "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": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "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 Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "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": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "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, "tippecanoe:retain_points_multiplier_sequence": 37 }, "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 & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "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": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "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 Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "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": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "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, "tippecanoe:retain_points_multiplier_sequence": 315 }, "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": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "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": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "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": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "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": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "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": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "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": "274 Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "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": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "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": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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, "tippecanoe:retain_points_multiplier_sequence": 294 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "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, "tippecanoe:retain_points_multiplier_sequence": 304 }, "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 & Thrift St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "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, "tippecanoe:retain_points_multiplier_sequence": 300 }, "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 & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "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, "tippecanoe:retain_points_multiplier_sequence": 297 }, "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 & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "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, "tippecanoe:retain_points_multiplier_sequence": 295 }, "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": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "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": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "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, "tippecanoe:retain_points_multiplier_sequence": 289 }, "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 & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "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": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "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": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "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": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "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": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "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": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "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": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "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": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "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, "tippecanoe:retain_points_multiplier_sequence": 375 }, "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": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "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, "tippecanoe:retain_points_multiplier_sequence": 449 }, "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 Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "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 St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "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 & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "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 & Flournoy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "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 & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "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": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "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, "tippecanoe:retain_points_multiplier_sequence": 334 }, "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, "tippecanoe:retain_points_multiplier_sequence": 452 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "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, "tippecanoe:retain_points_multiplier_sequence": 453 }, "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, "tippecanoe:retain_points_multiplier_sequence": 332 }, "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, "tippecanoe:retain_points_multiplier_sequence": 333 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "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, "tippecanoe:retain_points_multiplier_sequence": 323 }, "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 & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "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, "tippecanoe:retain_points_multiplier_sequence": 326 }, "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, "tippecanoe:retain_points_multiplier_sequence": 450 }, "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, "tippecanoe:retain_points_multiplier_sequence": 325 }, "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": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "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, "tippecanoe:retain_points_multiplier_sequence": 267 }, "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": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "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": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "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 & Allison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "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, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "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": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "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 & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "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 & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "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 & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "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 & Acton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "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 & Lawrence Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "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": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "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, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "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, "tippecanoe:retain_points_multiplier_sequence": 154 }, "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": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "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, "tippecanoe:retain_points_multiplier_sequence": 252 }, "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": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "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": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "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, "tippecanoe:retain_points_multiplier_sequence": 509 }, "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": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "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, "tippecanoe:retain_points_multiplier_sequence": 162 }, "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 & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "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, "tippecanoe:retain_points_multiplier_sequence": 153 }, "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": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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 & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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 & Brunswick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "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 & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "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": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "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": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "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": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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 & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "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 & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "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": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "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": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "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, "tippecanoe:retain_points_multiplier_sequence": 242 }, "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 & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "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": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "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": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "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": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "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": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "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": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "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": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "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": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "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": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "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 & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "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, "tippecanoe:retain_points_multiplier_sequence": 380 }, "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": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "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, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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 & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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, "tippecanoe:retain_points_multiplier_sequence": 81 }, "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": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "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, "tippecanoe:retain_points_multiplier_sequence": 320 }, "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": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "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, "tippecanoe:retain_points_multiplier_sequence": 311 }, "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": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "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": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "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": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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, "tippecanoe:retain_points_multiplier_sequence": 123 }, "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": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "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": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "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": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "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, "tippecanoe:retain_points_multiplier_sequence": 280 }, "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": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "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": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "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": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "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, "tippecanoe:retain_points_multiplier_sequence": 392 }, "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": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "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": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "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": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "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 & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "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, "tippecanoe:retain_points_multiplier_sequence": 481 }, "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&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "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 & Cielito Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "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": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "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": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "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 & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "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": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "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 & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "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, "tippecanoe:retain_points_multiplier_sequence": 348 }, "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, "tippecanoe:retain_points_multiplier_sequence": 349 }, "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, "tippecanoe:retain_points_multiplier_sequence": 347 }, "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 & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "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": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "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": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "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": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "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, "tippecanoe:retain_points_multiplier_sequence": 431 }, "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 & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "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, "tippecanoe:retain_points_multiplier_sequence": 186 }, "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": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "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": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "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, "tippecanoe:retain_points_multiplier_sequence": 220 }, "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": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "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": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "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 & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "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": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "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": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "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": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "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 & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "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": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "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 & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "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, "tippecanoe:retain_points_multiplier_sequence": 390 }, "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": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "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 & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "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, "tippecanoe:retain_points_multiplier_sequence": 413 }, "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": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "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, "tippecanoe:retain_points_multiplier_sequence": 399 }, "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": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "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, "tippecanoe:retain_points_multiplier_sequence": 371 }, "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": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "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": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "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": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "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": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "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": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "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": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "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 & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "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, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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 & Castelo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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, "tippecanoe:retain_points_multiplier_sequence": 455 }, "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": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "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 & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "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 & Macdonald Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "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": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "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": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "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, "tippecanoe:retain_points_multiplier_sequence": 367 }, "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 & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "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": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "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": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "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": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "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": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "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 & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "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, "tippecanoe:retain_points_multiplier_sequence": 441 }, "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": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "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, "tippecanoe:retain_points_multiplier_sequence": 445 }, "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": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "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": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "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, "tippecanoe:retain_points_multiplier_sequence": 434 }, "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": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "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 & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "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": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "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, "tippecanoe:retain_points_multiplier_sequence": 436 }, "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": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "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": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "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, "tippecanoe:retain_points_multiplier_sequence": 389 }, "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": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "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, "tippecanoe:retain_points_multiplier_sequence": 322 }, "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 & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "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": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "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, "tippecanoe:retain_points_multiplier_sequence": 409 }, "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": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "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 & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "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, "tippecanoe:retain_points_multiplier_sequence": 433 }, "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": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "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": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "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": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "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": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "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": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "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": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "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, "tippecanoe:retain_points_multiplier_sequence": 421 }, "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 & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "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, "tippecanoe:retain_points_multiplier_sequence": 418 }, "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": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "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, "tippecanoe:retain_points_multiplier_sequence": 365 }, "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": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "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, "tippecanoe:retain_points_multiplier_sequence": 416 }, "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": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "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, "tippecanoe:retain_points_multiplier_sequence": 356 }, "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": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "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": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "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 & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "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": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "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": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "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 & SOMERSET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "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 & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "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": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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": "Arleta Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "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": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "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, "tippecanoe:retain_points_multiplier_sequence": 501 }, "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, "tippecanoe:retain_points_multiplier_sequence": 494 }, "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, "tippecanoe:retain_points_multiplier_sequence": 498 }, "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, "tippecanoe:retain_points_multiplier_sequence": 491 }, "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": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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": "Leland Ave@Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "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 & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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 & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "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 & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "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": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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, "tippecanoe:retain_points_multiplier_sequence": 429 }, "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 & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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, "tippecanoe:retain_points_multiplier_sequence": 427 }, "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": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "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 & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "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, "tippecanoe:retain_points_multiplier_sequence": 402 }, "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": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "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": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "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": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "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, "tippecanoe:retain_points_multiplier_sequence": 500 }, "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": "BAY SHORE BLVD & SUNNYDALE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "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": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "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": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "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 & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "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": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "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, "tippecanoe:retain_points_multiplier_sequence": 426 }, "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 & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "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, "tippecanoe:retain_points_multiplier_sequence": 424 }, "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": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "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 & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "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 & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "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 & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "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": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "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, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "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": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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 & Bill Walsh Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "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": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "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": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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, "tippecanoe:retain_points_multiplier_sequence": 813 }, "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/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 812 }, "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, "tippecanoe:retain_points_multiplier_sequence": 810 }, "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": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 811 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "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 & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "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": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "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": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4161 }, "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": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "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": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4163 }, "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": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "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": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4162 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "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/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "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": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "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": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1693 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "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": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2283 }, "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": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 730 }, "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 Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "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": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "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": "BOWLEY ST & GIBSON RD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "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 & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3812 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2141 }, "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": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2140 }, "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/Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1695 }, "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/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1694 }, "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 Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1691 }, "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": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1692 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2137 }, "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": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2138 }, "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": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2135 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2247 }, "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": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2246 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "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": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2280 }, "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": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2142 }, "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": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "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": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "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 (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2560 }, "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": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2561 }, "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 & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2478 }, "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": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2250 }, "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)/Presidio Bank", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2251 }, "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": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "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": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2133 }, "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, "tippecanoe:retain_points_multiplier_sequence": 666 }, "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": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "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": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4041 }, "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": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "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 & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1899 }, "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": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1898 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4037 }, "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": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4257 }, "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": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "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": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4039 }, "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": "220 Halleck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "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": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "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": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4042 }, "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": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4040 }, "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": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2477 }, "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": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1897 }, "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 & Halleck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4043 }, "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 NW-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4256 }, "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": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3757 }, "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": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "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": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2925 }, "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 Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2924 }, "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 YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4258 }, "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 & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2929 }, "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": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2927 }, "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": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4255 }, "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": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "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/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2164 }, "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 DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "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 HOSPITAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "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": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3849 }, "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 & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "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": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "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": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "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, "tippecanoe:retain_points_multiplier_sequence": 150 }, "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": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4147 }, "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 & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "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": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "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": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4122 }, "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": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2999 }, "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": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3000 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "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": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "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": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2202 }, "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": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "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": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 932 }, "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 & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "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": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "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": "Chestnut St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 935 }, "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 St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "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 & Richardson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3758 }, "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": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2143 }, "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 & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "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": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2930 }, "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 & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3498 }, "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 & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3524 }, "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": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3497 }, "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": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "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": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2031 }, "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 & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2919 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "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": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2915 }, "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": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3122 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "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": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2015 }, "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": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "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": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3164 }, "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": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "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, "tippecanoe:retain_points_multiplier_sequence": 950 }, "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 & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 949 }, "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, "tippecanoe:retain_points_multiplier_sequence": 947 }, "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": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2155 }, "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": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2156 }, "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": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 944 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3912 }, "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": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3533 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "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 & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "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 & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1556 }, "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": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "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": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4199 }, "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": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "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": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4156 }, "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": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "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 & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "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": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "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": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3992 }, "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, "tippecanoe:retain_points_multiplier_sequence": 151 }, "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": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1646 }, "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, "tippecanoe:retain_points_multiplier_sequence": 934 }, "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": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "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": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1535 }, "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, "tippecanoe:retain_points_multiplier_sequence": 936 }, "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": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2145 }, "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": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2146 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1552 }, "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": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4300 }, "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, "tippecanoe:retain_points_multiplier_sequence": 954 }, "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": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "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": "Webster St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3681 }, "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": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3262 }, "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": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "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": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3506 }, "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": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3960 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3507 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3499 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3778 }, "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 & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3500 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3504 }, "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 & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3505 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3530 }, "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": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3529 }, "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": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3263 }, "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": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "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": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "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": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "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": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "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": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 857 }, "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": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2032 }, "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": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "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": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 883 }, "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": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1798 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3260 }, "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 & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3259 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3265 }, "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": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3264 }, "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, "tippecanoe:retain_points_multiplier_sequence": 145 }, "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": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1531 }, "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 & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1532 }, "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": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2019 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2040 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "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 & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4111 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2035 }, "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": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "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": "Steiner St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3266 }, "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": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1550 }, "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": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3656 }, "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": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 884 }, "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 & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3261 }, "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": "Steiner St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3258 }, "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": "California St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 897 }, "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": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3671 }, "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": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3104 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1563 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "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": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1565 }, "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": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 860 }, "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": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3129 }, "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": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3128 }, "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": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 649 }, "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 & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "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": "Point Lobos Ave & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2956 }, "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": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "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": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "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": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "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": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "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": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1737 }, "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": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 922 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1739 }, "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": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "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, "tippecanoe:retain_points_multiplier_sequence": 921 }, "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": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3894 }, "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": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "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": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "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": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "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 & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2955 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "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": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2954 }, "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": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2374 }, "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": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4065 }, "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": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "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": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2935 }, "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 & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 610 }, "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": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "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": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2934 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "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": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1769 }, "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": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "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": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "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": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2933 }, "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 & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "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": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "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, "tippecanoe:retain_points_multiplier_sequence": 613 }, "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": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "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, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "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, "tippecanoe:retain_points_multiplier_sequence": 920 }, "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": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "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": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "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": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "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": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "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 & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "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 t& 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4211 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4201 }, "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": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "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": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "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, "tippecanoe:retain_points_multiplier_sequence": 126 }, "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": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4210 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "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 & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "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": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "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": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "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 & Great Hwy", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2199 }, "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": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2200 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3908 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2093 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "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": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "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": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2195 }, "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, "tippecanoe:retain_points_multiplier_sequence": 625 }, "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 & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 624 }, "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, "tippecanoe:retain_points_multiplier_sequence": 616 }, "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": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 617 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2088 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2089 }, "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": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4154 }, "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": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4153 }, "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": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3831 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2087 }, "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": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3830 }, "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 & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 619 }, "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, "tippecanoe:retain_points_multiplier_sequence": 620 }, "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 & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "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, "tippecanoe:retain_points_multiplier_sequence": 622 }, "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 & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "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, "tippecanoe:retain_points_multiplier_sequence": 626 }, "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": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2085 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3814 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3832 }, "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 & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2084 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3834 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2082 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2083 }, "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": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3833 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "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": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "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": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2132 }, "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": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "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, "tippecanoe:retain_points_multiplier_sequence": 590 }, "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 & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "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": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 592 }, "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": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "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": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "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": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "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": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "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": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "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 & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "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": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 601 }, "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": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "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": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "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": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "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, "tippecanoe:retain_points_multiplier_sequence": 603 }, "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": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 602 }, "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": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 593 }, "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": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "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": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "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, "tippecanoe:retain_points_multiplier_sequence": 844 }, "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": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "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": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "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": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "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": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4296 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "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": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "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": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "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 & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "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": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "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": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "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, "tippecanoe:retain_points_multiplier_sequence": 125 }, "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": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "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": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "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": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "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": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 595 }, "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": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4245 }, "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 & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "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": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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, "tippecanoe:retain_points_multiplier_sequence": 597 }, "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": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "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 & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "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 & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "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": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "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 & ANZA St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4297 }, "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": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "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, "tippecanoe:retain_points_multiplier_sequence": 121 }, "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 & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "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, "tippecanoe:retain_points_multiplier_sequence": 118 }, "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 & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "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, "tippecanoe:retain_points_multiplier_sequence": 116 }, "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": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "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 ST & 31ST AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3925 }, "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 S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4209 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "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 St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1670 }, "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 S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4208 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "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": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1668 }, "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, "tippecanoe:retain_points_multiplier_sequence": 542 }, "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 & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "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": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "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": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 841 }, "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 & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "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": "25th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "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": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "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": "25th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "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, "tippecanoe:retain_points_multiplier_sequence": 839 }, "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": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 838 }, "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": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "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, "tippecanoe:retain_points_multiplier_sequence": 539 }, "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": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "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": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "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": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "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": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "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": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "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 & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "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": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "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 & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "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": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "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, "tippecanoe:retain_points_multiplier_sequence": 837 }, "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": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 836 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "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": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "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": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "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 & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "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": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "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": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "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, "tippecanoe:retain_points_multiplier_sequence": 531 }, "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 & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 532 }, "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": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "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": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "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": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "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 & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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, "tippecanoe:retain_points_multiplier_sequence": 112 }, "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": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "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, "tippecanoe:retain_points_multiplier_sequence": 537 }, "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": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "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": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "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": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "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": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3724 }, "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 & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "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": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "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, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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 & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "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, "tippecanoe:retain_points_multiplier_sequence": 109 }, "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 & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "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 & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1664 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "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 & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1662 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1659 }, "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 & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1660 }, "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": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4202 }, "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": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 605 }, "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": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3299 }, "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": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3300 }, "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 & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2192 }, "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 & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "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 & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "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 & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "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": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2189 }, "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": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3301 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2096 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3811 }, "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": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "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 & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3302 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3303 }, "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": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3304 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3809 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2080 }, "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": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3810 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3307 }, "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": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3308 }, "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": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3309 }, "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 & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3310 }, "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": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3311 }, "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 & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2600 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2587 }, "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": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3807 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2078 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2079 }, "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 & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3808 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "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": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3805 }, "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 & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2586 }, "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 & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2585 }, "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 & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2584 }, "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 & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "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": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2582 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2187 }, "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 & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "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 & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2186 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2183 }, "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": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "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 & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "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": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "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": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2181 }, "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": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2182 }, "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": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2179 }, "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": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "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": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "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": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4230 }, "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": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3877 }, "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, "tippecanoe:retain_points_multiplier_sequence": 421 }, "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 & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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, "tippecanoe:retain_points_multiplier_sequence": 410 }, "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": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3804 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3806 }, "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": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "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": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3803 }, "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": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2073 }, "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 & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "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": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "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 & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2580 }, "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 & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "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 & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2577 }, "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": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2578 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2072 }, "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": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3835 }, "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 & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "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 & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "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": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2071 }, "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": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3801 }, "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": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4152 }, "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": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3802 }, "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": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2070 }, "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 & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "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, "tippecanoe:retain_points_multiplier_sequence": 417 }, "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 & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "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, "tippecanoe:retain_points_multiplier_sequence": 420 }, "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": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "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": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "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": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "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": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "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": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2576 }, "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": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "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, "tippecanoe:retain_points_multiplier_sequence": 423 }, "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 & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "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, "tippecanoe:retain_points_multiplier_sequence": 426 }, "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": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "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": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2599 }, "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": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 647 }, "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": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "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": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2598 }, "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, "tippecanoe:retain_points_multiplier_sequence": 629 }, "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": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "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": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2596 }, "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": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "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": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2595 }, "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 & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "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, "tippecanoe:retain_points_multiplier_sequence": 632 }, "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": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "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": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "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": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "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": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3063 }, "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": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 634 }, "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": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "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 & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "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": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "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": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3062 }, "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": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "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 & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2594 }, "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 & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "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 & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2592 }, "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 & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2591 }, "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": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2590 }, "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 & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "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 & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2988 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "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 & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2986 }, "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": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "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, "tippecanoe:retain_points_multiplier_sequence": 638 }, "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 & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "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": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "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": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3390 }, "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": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "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": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3391 }, "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 & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 642 }, "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 & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 644 }, "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": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "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": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3587 }, "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": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "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": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "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": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3672 }, "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": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3389 }, "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 & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3388 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3387 }, "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 & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3386 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3385 }, "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": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3384 }, "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": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1699 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3230 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3231 }, "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 & 47TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3897 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3228 }, "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 & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3229 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3226 }, "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 & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3227 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3224 }, "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": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3225 }, "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": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4150 }, "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": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "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": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3207 }, "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": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1892 }, "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 & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3210 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3208 }, "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": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3209 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2007 }, "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": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2008 }, "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": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "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": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3312 }, "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": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4295 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3315 }, "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 & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3316 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3317 }, "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": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3318 }, "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": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "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": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3320 }, "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, "tippecanoe:retain_points_multiplier_sequence": 608 }, "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": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "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": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3061 }, "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": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3319 }, "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 & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2984 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2982 }, "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": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2983 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3321 }, "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": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3322 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2980 }, "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 & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2981 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "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": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "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, "tippecanoe:retain_points_multiplier_sequence": 570 }, "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": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2977 }, "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": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "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, "tippecanoe:retain_points_multiplier_sequence": 571 }, "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": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 572 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3325 }, "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 & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3326 }, "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": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3327 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3393 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3837 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3823 }, "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": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3392 }, "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": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3328 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3383 }, "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": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3382 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3330 }, "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 & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3329 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3331 }, "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 & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3332 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3333 }, "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": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3334 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3380 }, "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": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3381 }, "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, "tippecanoe:retain_points_multiplier_sequence": 573 }, "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 & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "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": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 575 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3378 }, "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": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3379 }, "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 & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "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": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "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": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3487 }, "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": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3586 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2973 }, "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 & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2972 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "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 & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2971 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2968 }, "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": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "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, "tippecanoe:retain_points_multiplier_sequence": 430 }, "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 & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "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, "tippecanoe:retain_points_multiplier_sequence": 432 }, "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": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2966 }, "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 & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2967 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2965 }, "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": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "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, "tippecanoe:retain_points_multiplier_sequence": 434 }, "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 & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "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, "tippecanoe:retain_points_multiplier_sequence": 437 }, "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 & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "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, "tippecanoe:retain_points_multiplier_sequence": 440 }, "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": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3377 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3376 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3375 }, "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 & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3374 }, "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": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3373 }, "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": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 568 }, "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 & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3372 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3370 }, "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": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3371 }, "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": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "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": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3369 }, "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 & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4127 }, "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": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "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 & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3223 }, "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": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3239 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3212 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4276 }, "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": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3211 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3336 }, "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": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3335 }, "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 & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3220 }, "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 & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3222 }, "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": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3221 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3323 }, "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 & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3324 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3313 }, "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 & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3314 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3305 }, "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": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3306 }, "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 & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3219 }, "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 & Clearfield Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3232 }, "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 & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3236 }, "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 & Constanso Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3233 }, "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 & El Mirasol Pl", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3235 }, "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 & Sylvan Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3240 }, "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 & Vale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3241 }, "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 & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3237 }, "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 & Paraiso Pl", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3238 }, "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": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3218 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1734 }, "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": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "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 & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3234 }, "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 & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3217 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3215 }, "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": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3216 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4271 }, "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": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3693 }, "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": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3692 }, "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, "tippecanoe:retain_points_multiplier_sequence": 453 }, "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 Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3900 }, "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": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "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/SFSU", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1736 }, "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 DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3924 }, "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": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1731 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3694 }, "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": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3695 }, "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": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1732 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4272 }, "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 & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4270 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "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": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "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 & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "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 & Acevedo Ave .", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "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": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "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 NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4260 }, "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": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "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": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "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": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "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": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 806 }, "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": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "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": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3690 }, "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": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3691 }, "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": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "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": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 803 }, "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 & Tapia Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1630 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1629 }, "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 NS/W-SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4261 }, "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": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "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": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "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": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "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": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "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, "tippecanoe:retain_points_multiplier_sequence": 834 }, "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 & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "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, "tippecanoe:retain_points_multiplier_sequence": 885 }, "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": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "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 & California Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "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": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2784 }, "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": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3927 }, "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 & FUNSTON AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "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, "tippecanoe:retain_points_multiplier_sequence": 832 }, "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": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "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 & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "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 & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "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 & 14 Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4101 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "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": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "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": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4083 }, "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": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1673 }, "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": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "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": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1672 }, "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": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "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": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "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, "tippecanoe:retain_points_multiplier_sequence": 830 }, "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 & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "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 Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3746 }, "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 St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3857 }, "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": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 829 }, "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": "8th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "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, "tippecanoe:retain_points_multiplier_sequence": 826 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "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": "California St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 828 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "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": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "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": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "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": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3845 }, "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": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4160 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3750 }, "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": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "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": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "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": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "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": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 133 }, "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": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "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": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2781 }, "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": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4196 }, "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": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "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, "tippecanoe:retain_points_multiplier_sequence": 104 }, "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": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1657 }, "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 & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "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": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "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": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2786 }, "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": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "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": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2785 }, "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": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "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, "tippecanoe:retain_points_multiplier_sequence": 102 }, "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 & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "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, "tippecanoe:retain_points_multiplier_sequence": 100 }, "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": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "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": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4099 }, "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": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4098 }, "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 & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1656 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "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": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1654 }, "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": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "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": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "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, "tippecanoe:retain_points_multiplier_sequence": 256 }, "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": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "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": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1652 }, "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": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "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": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "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": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3963 }, "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, "tippecanoe:retain_points_multiplier_sequence": 825 }, "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 & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 824 }, "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": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "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": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "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, "tippecanoe:retain_points_multiplier_sequence": 235 }, "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": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "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": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "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": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "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, "tippecanoe:retain_points_multiplier_sequence": 240 }, "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": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "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": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "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": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "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": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3102 }, "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 & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "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": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "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": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 675 }, "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 & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1415 }, "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": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "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 & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 853 }, "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 & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "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": "California St & Maple St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "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 & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "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": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "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, "tippecanoe:retain_points_multiplier_sequence": 678 }, "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": "ARGUELLO BLVD & EUCLID AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3931 }, "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": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "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 & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4299 }, "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": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "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": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "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": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 681 }, "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 & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "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": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "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, "tippecanoe:retain_points_multiplier_sequence": 230 }, "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": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "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, "tippecanoe:retain_points_multiplier_sequence": 233 }, "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": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "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": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "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": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 918 }, "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": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3940 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3941 }, "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": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1650 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "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": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1648 }, "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": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "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 & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "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": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 674 }, "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 & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3461 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3483 }, "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": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3484 }, "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": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "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": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "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 & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "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": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "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": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3253 }, "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": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "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": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1886 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3255 }, "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 & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3254 }, "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": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3256 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2177 }, "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 & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2175 }, "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 & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2176 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "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": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "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": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "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": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "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": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2173 }, "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": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2174 }, "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": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2066 }, "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 Way & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2171 }, "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": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4078 }, "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": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "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": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "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 & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "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": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "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": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2169 }, "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": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1999 }, "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": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4140 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4141 }, "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": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2065 }, "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": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3797 }, "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, "tippecanoe:retain_points_multiplier_sequence": 269 }, "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": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2069 }, "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": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3800 }, "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 Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "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 Avenue at Lawton Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3919 }, "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": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2068 }, "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 & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3799 }, "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": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2091 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1757 }, "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": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1756 }, "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 & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "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, "tippecanoe:retain_points_multiplier_sequence": 330 }, "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": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "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": "Noriega St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "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": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "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": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2067 }, "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": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3798 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "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 & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1755 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1753 }, "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": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1752 }, "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, "tippecanoe:retain_points_multiplier_sequence": 270 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3890 }, "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 & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3891 }, "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": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "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": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1750 }, "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 & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "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, "tippecanoe:retain_points_multiplier_sequence": 276 }, "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 & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "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, "tippecanoe:retain_points_multiplier_sequence": 278 }, "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": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "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 & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2170 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2167 }, "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": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2168 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "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": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1997 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "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 & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2063 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "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": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2060 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "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": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "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": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2721 }, "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": "Parnassus Ave &4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4192 }, "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": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4193 }, "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": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2196 }, "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 & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1994 }, "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": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2000 }, "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": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1632 }, "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, "tippecanoe:retain_points_multiplier_sequence": 910 }, "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": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "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": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "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": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2723 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2726 }, "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": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2727 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1637 }, "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": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "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": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2733 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "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": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "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": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3972 }, "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": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3653 }, "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": "455 Warren Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3650 }, "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, "tippecanoe:retain_points_multiplier_sequence": 243 }, "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": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "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": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "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": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "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": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3649 }, "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": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3648 }, "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 & Devonshire Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3652 }, "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": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3651 }, "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": "117 Warren Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3647 }, "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": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3654 }, "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": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2656 }, "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": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "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, "tippecanoe:retain_points_multiplier_sequence": 895 }, "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": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "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 & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "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": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "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, "tippecanoe:retain_points_multiplier_sequence": 875 }, "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": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "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": "Walnut St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3646 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1411 }, "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 & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "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": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1416 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1679 }, "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 & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "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": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "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": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3127 }, "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": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "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, "tippecanoe:retain_points_multiplier_sequence": 891 }, "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": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 892 }, "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 & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2921 }, "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 & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2912 }, "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": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2920 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "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": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2923 }, "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": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2922 }, "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": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3357 }, "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, "tippecanoe:retain_points_multiplier_sequence": 848 }, "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": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3337 }, "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": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3338 }, "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": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "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": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "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": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2548 }, "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": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1675 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2917 }, "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": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "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 & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "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": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3479 }, "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 & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3480 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3466 }, "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 & Chabot Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3467 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3482 }, "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": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3481 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "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 & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "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 St & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "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 Street & Shrader Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4085 }, "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": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "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": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3168 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1884 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "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 & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4118 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1866 }, "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 & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1865 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1863 }, "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": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1864 }, "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": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3476 }, "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": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3477 }, "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 & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "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": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2547 }, "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": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3469 }, "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": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "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": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "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": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2544 }, "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": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "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": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4205 }, "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": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2545 }, "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 & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3468 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3475 }, "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": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3474 }, "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": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4207 }, "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": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3747 }, "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": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "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": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4203 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4215 }, "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": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4214 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "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": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1854 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2554 }, "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": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1877 }, "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": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1878 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2555 }, "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": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1862 }, "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 & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "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": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1875 }, "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": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 858 }, "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 & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "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 & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "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 & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "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": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1390 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3341 }, "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 & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3342 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3360 }, "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": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3359 }, "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 & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "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": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1682 }, "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": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3464 }, "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": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "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": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "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": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "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 & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "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": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "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": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1678 }, "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": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1370 }, "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": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1425 }, "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": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "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": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3361 }, "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": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3362 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "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 & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1562 }, "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": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1566 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3343 }, "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": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3344 }, "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": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1567 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "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": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "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": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "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": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "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 & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1559 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1538 }, "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": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1427 }, "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": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1426 }, "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 & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1568 }, "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": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1540 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3462 }, "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": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3463 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2256 }, "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": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2255 }, "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": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3465 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2258 }, "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 & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4206 }, "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": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2261 }, "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": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "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": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2260 }, "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 & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1376 }, "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 & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "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": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "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": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1856 }, "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 & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1819 }, "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": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1857 }, "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 & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1858 }, "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": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1867 }, "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": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1382 }, "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": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1868 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "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": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "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": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1826 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2272 }, "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": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2271 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1881 }, "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 & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "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": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "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": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2262 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1554 }, "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": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1555 }, "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 & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1887 }, "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": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "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": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "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 & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1837 }, "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 & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "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": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "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": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3169 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3257 }, "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": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3775 }, "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": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "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": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3252 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "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": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "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": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1823 }, "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": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "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 & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "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": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "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": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "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": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3250 }, "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": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "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": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3251 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "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 & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2731 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2728 }, "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": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2729 }, "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": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3949 }, "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": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "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, "tippecanoe:retain_points_multiplier_sequence": 908 }, "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": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 909 }, "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": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "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": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2725 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "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 & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "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": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "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 & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 689 }, "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": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 692 }, "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": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2551 }, "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": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "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": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "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": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1635 }, "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": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "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": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1633 }, "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": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3962 }, "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": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "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": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "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": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2552 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1832 }, "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 & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "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 & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1821 }, "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": "Haight St & Buena Vista West Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "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": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "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": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3756 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "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 & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "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": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "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 & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "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 & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "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 & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 691 }, "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 & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 685 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3909 }, "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": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 687 }, "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 & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3548 }, "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": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3547 }, "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": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3048 }, "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": "415 Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3049 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3056 }, "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 & Lower Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3057 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3055 }, "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": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3054 }, "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": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "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": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "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": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "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": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2807 }, "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": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2538 }, "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": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "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": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "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": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "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": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "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 & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "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": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "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": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "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": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "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": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "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": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3052 }, "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": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3053 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "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": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "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": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "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": "341 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1133 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "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": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "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": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "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": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "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, "tippecanoe:retain_points_multiplier_sequence": 379 }, "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 & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "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": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "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": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "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": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "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": "Market St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2504 }, "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": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "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": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "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 & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "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": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "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": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "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": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "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, "tippecanoe:retain_points_multiplier_sequence": 820 }, "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 Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "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": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "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": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2780 }, "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": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3051 }, "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": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 823 }, "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": "Roosevelt Way&Buena Vista Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3974 }, "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": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 822 }, "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": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "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 & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3050 }, "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": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3058 }, "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": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "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": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "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": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "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, "tippecanoe:retain_points_multiplier_sequence": 310 }, "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": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "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": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "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 St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3933 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3793 }, "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": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1404 }, "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": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3982 }, "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, "tippecanoe:retain_points_multiplier_sequence": 312 }, "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": "14th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "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 & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "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": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "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": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2505 }, "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": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "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 & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2508 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2507 }, "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": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3934 }, "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 & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "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": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "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": "17th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "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 & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "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 & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "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": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "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": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "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 & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "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": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "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, "tippecanoe:retain_points_multiplier_sequence": 387 }, "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": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "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 & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "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": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "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 & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "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": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "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": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "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": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1804 }, "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": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "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": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "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": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "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": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "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": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1484 }, "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": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "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": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "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": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "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": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "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": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "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, "tippecanoe:retain_points_multiplier_sequence": 393 }, "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": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "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": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "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": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "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 & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "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": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "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 & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "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": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2962 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2963 }, "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": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4124 }, "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": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4123 }, "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": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2961 }, "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, "tippecanoe:retain_points_multiplier_sequence": 356 }, "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 & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "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": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "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": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3246 }, "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": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "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": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "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": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3245 }, "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": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "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 & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "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": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2992 }, "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": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "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": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "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": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "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": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "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, "tippecanoe:retain_points_multiplier_sequence": 286 }, "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 & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "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, "tippecanoe:retain_points_multiplier_sequence": 288 }, "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": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "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 & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "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 & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2960 }, "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": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "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": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "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 & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3368 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3367 }, "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": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3366 }, "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": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "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": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4135 }, "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, "tippecanoe:retain_points_multiplier_sequence": 321 }, "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": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "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, "tippecanoe:retain_points_multiplier_sequence": 303 }, "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": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "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, "tippecanoe:retain_points_multiplier_sequence": 323 }, "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": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "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": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "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, "tippecanoe:retain_points_multiplier_sequence": 447 }, "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 & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "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, "tippecanoe:retain_points_multiplier_sequence": 448 }, "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": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "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": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3639 }, "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": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "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": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3489 }, "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 & Forest Side Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3488 }, "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 & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3490 }, "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 Leave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4130 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3911 }, "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": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3496 }, "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 Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3493 }, "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 Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3643 }, "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 Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3494 }, "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 Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3780 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3491 }, "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": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3492 }, "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 t", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4226 }, "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": "Ulloa St & West Portal Ave Arrive", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4129 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3641 }, "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 Station Inbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3170 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3825 }, "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 Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4227 }, "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 Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3495 }, "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 & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3642 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3637 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3970 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3838 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3636 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3638 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3644 }, "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": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3645 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3588 }, "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": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3589 }, "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 Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3851 }, "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": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "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": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2114 }, "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": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3733 }, "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": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "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": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "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": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "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": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "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": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "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": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3945 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2116 }, "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": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3946 }, "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": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1516 }, "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": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2117 }, "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": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "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/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2118 }, "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 & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3944 }, "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/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3947 }, "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": "Laguna Honda Blvd & Dewey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2115 }, "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": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2122 }, "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 Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2203 }, "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": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "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": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3673 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1772 }, "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 Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1773 }, "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": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3001 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3674 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3675 }, "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 & Hernandez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3676 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3679 }, "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": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3680 }, "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 Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2940 }, "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 & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2944 }, "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 & Dorchester Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "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": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2941 }, "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 & Juanita Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2380 }, "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 & Marne Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2379 }, "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": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "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": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2375 }, "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": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2376 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "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": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2120 }, "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 & Waithman Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2946 }, "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": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "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 & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "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": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2125 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "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 & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2938 }, "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": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2839 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2323 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3214 }, "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": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4134 }, "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, "tippecanoe:retain_points_multiplier_sequence": 439 }, "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": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "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": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3213 }, "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, "tippecanoe:retain_points_multiplier_sequence": 428 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4128 }, "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": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3041 }, "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": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3042 }, "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": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4267 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3242 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4021 }, "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": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3243 }, "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/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3275 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3044 }, "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": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3043 }, "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": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2013 }, "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/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3640 }, "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 AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3895 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3274 }, "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": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3822 }, "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": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3826 }, "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": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "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": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1488 }, "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": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3037 }, "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": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "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": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "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": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3038 }, "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": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1490 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2012 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3827 }, "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 & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2011 }, "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": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3899 }, "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": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3280 }, "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 & San Fernando Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3279 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3277 }, "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 Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3278 }, "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": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3276 }, "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 & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3163 }, "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": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3162 }, "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": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4064 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3819 }, "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 & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3818 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2616 }, "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": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2615 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4074 }, "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, "tippecanoe:retain_points_multiplier_sequence": 451 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4075 }, "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 & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "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 & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "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": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3914 }, "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": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3915 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3784 }, "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, "tippecanoe:retain_points_multiplier_sequence": 407 }, "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, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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 Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3785 }, "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 Avenue & Holloway St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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 Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "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 & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1911 }, "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": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "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": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "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": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4139 }, "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": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "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": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "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": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "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 & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1913 }, "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": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1910 }, "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": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "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": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "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": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2010 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2622 }, "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 & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3817 }, "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": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "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&Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3989 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "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&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3990 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3886 }, "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 & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "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 Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2313 }, "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": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "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": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "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 & Ravenwood Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3729 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3727 }, "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 & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3728 }, "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": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3726 }, "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 & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "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 & El Verano Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2301 }, "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": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2312 }, "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 & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3725 }, "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": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3730 }, "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 & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2806 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2797 }, "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": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2796 }, "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": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "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": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2801 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "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 & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2309 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2316 }, "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": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3820 }, "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 & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "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 & Fairfield Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2629 }, "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 & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3815 }, "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": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2623 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "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": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "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 & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1793 }, "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 & JULES AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3885 }, "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 & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1790 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3816 }, "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": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2802 }, "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": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2803 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "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 St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "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 Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3991 }, "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": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "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 & Capitol AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3884 }, "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 & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1795 }, "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 & Granada Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "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": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3883 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2792 }, "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 & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "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": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2791 }, "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 & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1796 }, "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": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3930 }, "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": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2790 }, "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 & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "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 & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "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 & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2659 }, "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": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "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": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "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 & Aquavista Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3204 }, "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": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3206 }, "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": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "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": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3677 }, "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": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "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": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3678 }, "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": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "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": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3429 }, "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": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "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": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3205 }, "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": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "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": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2911 }, "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": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "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": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "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": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2910 }, "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": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "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": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "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": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "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": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3751 }, "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": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "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": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "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": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1808 }, "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": "6 Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2834 }, "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": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "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": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2841 }, "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": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1785 }, "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": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2936 }, "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": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "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": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "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": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4191 }, "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": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3887 }, "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 & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "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": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2838 }, "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": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2835 }, "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": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1812 }, "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 & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "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": "Clipper St & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "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": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3917 }, "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": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3918 }, "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": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "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": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "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 & Fowler Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3421 }, "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": "Teresita Blvd & Evelyn Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3417 }, "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": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "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 & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3428 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3425 }, "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 & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3424 }, "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": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3430 }, "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": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3047 }, "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": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3431 }, "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": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2322 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2325 }, "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": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2324 }, "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": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3046 }, "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": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3971 }, "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": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3045 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "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": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2327 }, "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": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "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": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3423 }, "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 & Gaviota Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3422 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3416 }, "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 & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3415 }, "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 & Bella Vista Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3414 }, "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": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3427 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3411 }, "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": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3410 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2668 }, "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": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2667 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1805 }, "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": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1806 }, "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": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "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": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1631 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "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": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "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": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "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": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "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": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 551 }, "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": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "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": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "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": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "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": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "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": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "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": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1316 }, "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 & Amber Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "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": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "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": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "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": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "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": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "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, "tippecanoe:retain_points_multiplier_sequence": 509 }, "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": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "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 & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "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": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1329 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "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 & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "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": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "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": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "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": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "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 & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3942 }, "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": "24th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "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": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2357 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "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": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "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": "25th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "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 & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "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 & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1330 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "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 & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1341 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "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 & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "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 & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "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": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "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": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3957 }, "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, "tippecanoe:retain_points_multiplier_sequence": 557 }, "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 & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "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": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "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 Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "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 (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3932 }, "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 & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "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 & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "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 St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "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 Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "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 St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "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 Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "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 St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "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 & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "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 & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "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 Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "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 Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "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": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1349 }, "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 & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 656 }, "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": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 659 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "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 & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "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 & Arbor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "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 & Sussex St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "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": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "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 & Farnum St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "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": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "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": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "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": "164 Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 655 }, "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": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1359 }, "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": "33 Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2475 }, "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": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3419 }, "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 & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "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 St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "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": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4092 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2310 }, "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 & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2311 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2306 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "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": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3993 }, "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 & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1710 }, "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": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1709 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "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": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2043 }, "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": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2044 }, "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": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2303 }, "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": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "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": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2304 }, "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 & Flood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "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": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1575 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3418 }, "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": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3420 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3413 }, "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": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3412 }, "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 & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3433 }, "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": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3426 }, "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": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2299 }, "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": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3432 }, "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 & Detroit St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "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 & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "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": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2298 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2763 }, "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 (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "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": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2757 }, "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": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "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 LOOP", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2762 }, "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 AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2758 }, "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": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2761 }, "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 & Phelan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2638 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3766 }, "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": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "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": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1718 }, "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/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "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": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2626 }, "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": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "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": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "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": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1916 }, "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": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2318 }, "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": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1776 }, "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": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1777 }, "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": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "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": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "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&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4269 }, "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/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2617 }, "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": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3085 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3769 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3084 }, "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": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "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": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "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/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1715 }, "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": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1781 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3854 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2319 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "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": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2320 }, "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, "tippecanoe:retain_points_multiplier_sequence": 59 }, "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, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4250 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3081 }, "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/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "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": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3074 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3821 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3080 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "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": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1711 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3860 }, "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 & SAN JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1784 }, "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": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1783 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3142 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3861 }, "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": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4198 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3072 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3853 }, "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": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4197 }, "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": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2639 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3087 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3086 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3770 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2641 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "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 & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1719 }, "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 at Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3889 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1716 }, "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": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1717 }, "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, "tippecanoe:retain_points_multiplier_sequence": 721 }, "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": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "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 & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "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 & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2293 }, "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 & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2291 }, "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": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2296 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3771 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3094 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "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 & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3772 }, "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": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3083 }, "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": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2294 }, "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": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 988 }, "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": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2292 }, "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": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "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, "tippecanoe:retain_points_multiplier_sequence": 723 }, "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": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "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": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "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 & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "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": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 963 }, "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": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "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": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 720 }, "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": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "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": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 719 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "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": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "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": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3171 }, "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": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3172 }, "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 & Havelock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3075 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3098 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3774 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3096 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3097 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3773 }, "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 & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3095 }, "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": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3092 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2635 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "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 & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4159 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2618 }, "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": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "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": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3787 }, "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 & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2454 }, "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": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2453 }, "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": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "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 St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4219 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2747 }, "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": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "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 & Norton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "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, "tippecanoe:retain_points_multiplier_sequence": 45 }, "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": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 778 }, "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": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "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": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2632 }, "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 & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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 & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "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 & Francis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "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": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2445 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1513 }, "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": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "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": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 783 }, "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 & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2465 }, "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": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2464 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2754 }, "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 & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2753 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2746 }, "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": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2745 }, "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": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "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": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "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": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1741 }, "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 St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1962 }, "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": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2335 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "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 St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1940 }, "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 OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1957 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2330 }, "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": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2329 }, "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": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1956 }, "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": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "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": "Jones St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "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": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "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 & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "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": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "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": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "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": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "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 & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4195 }, "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": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2872 }, "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": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2337 }, "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": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2338 }, "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": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3852 }, "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": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "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": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3282 }, "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": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1474 }, "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 & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3768 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2891 }, "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 & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "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": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2871 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "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": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2341 }, "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": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "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": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2128 }, "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": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "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": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "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, "tippecanoe:retain_points_multiplier_sequence": 945 }, "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 & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 946 }, "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, "tippecanoe:retain_points_multiplier_sequence": 940 }, "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 & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "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, "tippecanoe:retain_points_multiplier_sequence": 938 }, "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": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 939 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2151 }, "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": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2152 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3523 }, "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": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3522 }, "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 NW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4266 }, "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": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4259 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3509 }, "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": "Union St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3508 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3571 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3570 }, "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": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3569 }, "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": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4082 }, "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&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4265 }, "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": "Van Ness Ave & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3557 }, "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": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4188 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2339 }, "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": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "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": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2818 }, "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": "Francisco Street & Polk Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4093 }, "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": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3552 }, "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": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 951 }, "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": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3553 }, "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": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 952 }, "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": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3551 }, "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": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2336 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2813 }, "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 & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2814 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2816 }, "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": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3560 }, "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": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3561 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3537 }, "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": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3538 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3583 }, "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": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3584 }, "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": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "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": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3531 }, "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": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "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": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3532 }, "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 & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2815 }, "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": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "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 & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "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 & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2027 }, "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 & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2029 }, "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": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2021 }, "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 & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3658 }, "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": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3655 }, "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": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3100 }, "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": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3663 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3114 }, "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 & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3115 }, "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 & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3101 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "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": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3119 }, "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": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3585 }, "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": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "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": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3657 }, "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 & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3549 }, "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": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3576 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2693 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3913 }, "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": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2694 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2809 }, "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 & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "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": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2820 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2685 }, "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": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "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": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3564 }, "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": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2038 }, "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": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3565 }, "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": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2037 }, "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": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3670 }, "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": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3554 }, "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": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3893 }, "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": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "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": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2030 }, "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": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2832 }, "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": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3666 }, "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": "Sacramento St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3107 }, "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": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "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": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 993 }, "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": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3106 }, "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": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "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": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4277 }, "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": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3126 }, "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 & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3579 }, "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": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3550 }, "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": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "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": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2826 }, "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": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "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": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3120 }, "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": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "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": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3844 }, "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": "Polk St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "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": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "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": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3577 }, "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": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4275 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1936 }, "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 & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1943 }, "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 & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1942 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "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": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "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": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3395 }, "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 St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3396 }, "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 OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1948 }, "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 & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1949 }, "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": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3518 }, "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": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3519 }, "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": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "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": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3512 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "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": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1965 }, "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": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3513 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "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 & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1950 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1967 }, "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": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3520 }, "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 & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3521 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3515 }, "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": "Union St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3514 }, "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 & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3394 }, "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": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3398 }, "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": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "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": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3397 }, "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 & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "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 & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "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 & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3873 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "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": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2231 }, "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": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "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": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2881 }, "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 & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2887 }, "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": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "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": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "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": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2880 }, "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": "Stockton St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3291 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3536 }, "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": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3535 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2230 }, "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": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2229 }, "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": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3526 }, "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": "Mason St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2240 }, "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": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3525 }, "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 & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2239 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "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": "Mason St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "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": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3503 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3501 }, "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": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3502 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "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 & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "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": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2226 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2679 }, "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": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2678 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "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": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1938 }, "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": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "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": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1959 }, "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": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "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": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "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 & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2022 }, "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": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2025 }, "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": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3661 }, "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": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 999 }, "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": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1952 }, "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": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3659 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2680 }, "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": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2681 }, "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": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2026 }, "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": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1762 }, "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": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1944 }, "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": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 996 }, "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": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3662 }, "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": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1768 }, "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": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "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": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "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": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3112 }, "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": "Polk St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2811 }, "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 & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 887 }, "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, "tippecanoe:retain_points_multiplier_sequence": 872 }, "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": "California St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "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": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4274 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2821 }, "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": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2822 }, "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": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3109 }, "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 & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "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": "Hyde St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "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, "tippecanoe:retain_points_multiplier_sequence": 866 }, "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": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "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": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "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": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3113 }, "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, "tippecanoe:retain_points_multiplier_sequence": 877 }, "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": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "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": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1759 }, "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": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1960 }, "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": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 815 }, "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": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3346 }, "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 & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1764 }, "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": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1758 }, "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": "Sutter St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3350 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "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": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2676 }, "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": "Jackson St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "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": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2691 }, "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": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2036 }, "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": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3660 }, "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": "Clay St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "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": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3669 }, "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": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "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": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2683 }, "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": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2238 }, "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": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "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 & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2237 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2235 }, "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": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "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": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "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, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "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": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "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": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2885 }, "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": "Washington St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3667 }, "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, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3665 }, "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": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3664 }, "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": "Mason St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2243 }, "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": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3124 }, "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 & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "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": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "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": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3110 }, "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, "tippecanoe:retain_points_multiplier_sequence": 868 }, "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 & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "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": "California St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "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 & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 817 }, "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": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "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": "Leavenworth St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "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": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3347 }, "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": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "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 & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 900 }, "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, "tippecanoe:retain_points_multiplier_sequence": 879 }, "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": "California St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "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 & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3364 }, "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": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3353 }, "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": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4125 }, "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": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2333 }, "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": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2334 }, "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": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3794 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "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": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3951 }, "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 & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2157 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2147 }, "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": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2148 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3289 }, "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 & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3290 }, "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": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3287 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2149 }, "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": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2150 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3404 }, "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": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3405 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3407 }, "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": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3408 }, "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": "COIT TOWER", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "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": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3406 }, "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": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3403 }, "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": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3297 }, "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": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3534 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3285 }, "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": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3284 }, "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 & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "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": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3511 }, "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": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3510 }, "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": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3293 }, "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": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2690 }, "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 & GRANT AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3876 }, "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": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3516 }, "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 & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3517 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3527 }, "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": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3528 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "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": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "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": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "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": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2672 }, "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 & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "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": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1727 }, "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": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2677 }, "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": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "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": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3948 }, "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": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "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 & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3134 }, "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": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3133 }, "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": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3139 }, "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": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "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 & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "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": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "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": "Battery St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3140 }, "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": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "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": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2684 }, "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": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3745 }, "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": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2689 }, "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": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3135 }, "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": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "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": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "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": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4217 }, "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": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4249 }, "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": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "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 & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3292 }, "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": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3298 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2878 }, "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": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2877 }, "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": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3121 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2900 }, "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": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2899 }, "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": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3283 }, "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": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "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": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3294 }, "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": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3125 }, "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": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "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": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "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": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "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": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 995 }, "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": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3108 }, "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": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "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": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "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": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3111 }, "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 & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "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": "Kearny St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1722 }, "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, "tippecanoe:retain_points_multiplier_sequence": 870 }, "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 & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 871 }, "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, "tippecanoe:retain_points_multiplier_sequence": 889 }, "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": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 890 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2876 }, "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": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "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, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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 & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "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": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "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, "tippecanoe:retain_points_multiplier_sequence": 898 }, "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": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2874 }, "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": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2873 }, "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": "Sutter St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3356 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2902 }, "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 & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2901 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2897 }, "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": "Powell St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2898 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3296 }, "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": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3295 }, "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": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3363 }, "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": "Post St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2848 }, "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": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 865 }, "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": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2949 }, "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": "Sutter St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3348 }, "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": "POST & GRANT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4186 }, "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": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "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": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3668 }, "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": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3141 }, "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": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3117 }, "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": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3116 }, "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": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "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": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3132 }, "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": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3123 }, "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": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 882 }, "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 & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "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": "Clay St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "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": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3137 }, "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": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3099 }, "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": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3130 }, "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": "California St & SANSOME ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 894 }, "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": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3131 }, "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 & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 893 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4072 }, "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, "tippecanoe:retain_points_multiplier_sequence": 850 }, "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 & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 851 }, "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": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "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": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "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": "Pine St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2779 }, "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": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 818 }, "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 & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1729 }, "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": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1724 }, "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 St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "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": "POST & MONTGOMERY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4187 }, "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 & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2525 }, "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": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2526 }, "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": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3136 }, "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": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "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": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3967 }, "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": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3358 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3138 }, "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": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4108 }, "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, "tippecanoe:retain_points_multiplier_sequence": 814 }, "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": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3879 }, "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 & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2498 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3943 }, "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 & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "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": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2480 }, "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": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "Market St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2530 }, "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": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3401 }, "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, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4107 }, "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": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "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": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "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": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "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 & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1472 }, "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/Pier 5", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "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 & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1476 }, "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": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "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": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "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": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3103 }, "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": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "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 & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "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": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 862 }, "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": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2778 }, "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": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 856 }, "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": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4121 }, "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": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "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": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "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": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3961 }, "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": "Drumm St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1401 }, "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": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "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 & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2523 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2499 }, "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 & BEALE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "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": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2511 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1477 }, "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 & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "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 & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "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/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1460 }, "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 & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3753 }, "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": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3950 }, "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, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3875 }, "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": "Spear St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3249 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3916 }, "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": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "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, "tippecanoe:retain_points_multiplier_sequence": 56 }, "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, "tippecanoe:retain_points_multiplier_sequence": 57 }, "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, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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": "EMBARCADERO & ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3928 }, "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": "STEUART ST & FRANCISCO ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "Main St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "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 & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3273 }, "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": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3269 }, "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, "tippecanoe:retain_points_multiplier_sequence": 51 }, "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": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "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 & Donchee Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4293 }, "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": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3268 }, "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": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1645 }, "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": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4119 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3267 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3272 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3270 }, "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": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3271 }, "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 Stt & Steuart St NW-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4268 }, "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": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4179 }, "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": "Front & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4291 }, "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": "Market St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2512 }, "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": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "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": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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 & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2390 }, "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": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4068 }, "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": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3402 }, "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": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3399 }, "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": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4292 }, "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": "Main St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2206 }, "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 St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2455 }, "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 & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4231 }, "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 & Beale St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "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": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2469 }, "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": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "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": "Howard St. & Beale St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4137 }, "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": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3400 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4149 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2204 }, "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": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4146 }, "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": "Howard St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1932 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1641 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1642 }, "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": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1640 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4247 }, "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, "tippecanoe:retain_points_multiplier_sequence": 148 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4136 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4138 }, "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": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4145 }, "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": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "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": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1468 }, "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": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3959 }, "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": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2473 }, "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": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "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": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1933 }, "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": "Hward St&Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4183 }, "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": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1934 }, "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": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "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": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1930 }, "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": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "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": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1614 }, "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": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4144 }, "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": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4288 }, "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": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1456 }, "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": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4280 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "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": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "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": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1850 }, "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&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4263 }, "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&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4264 }, "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 & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3847 }, "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": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4034 }, "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": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1814 }, "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": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 697 }, "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 & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1813 }, "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": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1815 }, "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": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "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 H & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4115 }, "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 & 12th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4116 }, "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 & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "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 & Gateview AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "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": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3744 }, "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 C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4117 }, "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 D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4132 }, "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": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "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 & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 706 }, "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": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "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": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "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 & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4114 }, "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 H & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "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": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3437 }, "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": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3436 }, "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": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "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 & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4113 }, "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 & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 700 }, "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, "tippecanoe:retain_points_multiplier_sequence": 702 }, "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": "Avenue H & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4112 }, "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 H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 905 }, "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": "California St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "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": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4070 }, "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": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "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": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3935 }, "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 Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3936 }, "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 St & Nimitz Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2285 }, "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": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3937 }, "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": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "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": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "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": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "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": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3938 }, "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": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2355 }, "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": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3939 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "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": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1901 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3339 }, "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": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3340 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1687 }, "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": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3351 }, "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 & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3352 }, "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": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3354 }, "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": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2844 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "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": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "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": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2846 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "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 & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "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": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1436 }, "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": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3345 }, "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": "Post St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "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": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "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": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3203 }, "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": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3580 }, "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": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3365 }, "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": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3581 }, "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": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "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": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3578 }, "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": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3559 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3558 }, "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 & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4278 }, "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": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4216 }, "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": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2654 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3575 }, "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 & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3574 }, "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": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4218 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "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": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "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": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2253 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2264 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2265 }, "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": "McAllister St & Gough st", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4204 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3555 }, "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": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3556 }, "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": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3486 }, "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": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "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 & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2275 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2263 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2277 }, "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": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2278 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "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": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "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": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1869 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1547 }, "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": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1548 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "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": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1891 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2270 }, "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": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "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": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1859 }, "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": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "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": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2131 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1557 }, "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": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1558 }, "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": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1828 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4158 }, "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": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1546 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1829 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "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": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "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": "785 Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2252 }, "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": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "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": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "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": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1799 }, "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": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1872 }, "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": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1519 }, "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": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "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": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "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": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "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": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2697 }, "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": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "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": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4061 }, "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": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1831 }, "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": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4076 }, "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": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2522 }, "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": "Page St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "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": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4229 }, "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": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2695 }, "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": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "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": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3627 }, "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": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "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": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "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": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2827 }, "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": "Sutter St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3355 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "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": "Polk St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "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": "Post St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "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": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3349 }, "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 & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "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": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1685 }, "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": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "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 & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "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": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "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": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2842 }, "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": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "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": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "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": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1747 }, "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": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2647 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "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": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "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": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3582 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "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": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "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": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3478 }, "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": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3566 }, "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": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2276 }, "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": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3567 }, "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": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2273 }, "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": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2274 }, "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": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "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": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1742 }, "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": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1433 }, "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": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3472 }, "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": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "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": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "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": "Turk St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3470 }, "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": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1963 }, "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": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2268 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1746 }, "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": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3954 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "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": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2266 }, "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": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1955 }, "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": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1765 }, "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": "Post St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "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": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "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": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1761 }, "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": "Jones St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2058 }, "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": "Post St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2951 }, "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": "Geary Blvd & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "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": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2057 }, "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": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1763 }, "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": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2650 }, "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 & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "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": "Ellis St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "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": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "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": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "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": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "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 & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "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": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "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": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4164 }, "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": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "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": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3979 }, "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": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3966 }, "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": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "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 & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "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": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "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": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3473 }, "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 & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "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": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "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": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3471 }, "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 & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4157 }, "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": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2254 }, "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 N", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4063 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2497 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "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": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "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": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "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": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3485 }, "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 & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2488 }, "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": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "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": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4120 }, "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": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2489 }, "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": "7th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "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": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3562 }, "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": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1889 }, "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": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "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": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3563 }, "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": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4079 }, "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": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3767 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3573 }, "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": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3572 }, "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": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3760 }, "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": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3568 }, "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": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "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": "SOUTH VAN NESS AVE & 12TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4056 }, "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, "tippecanoe:retain_points_multiplier_sequence": 298 }, "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": "11th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "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": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "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": "GROVE AND LARKIN", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4081 }, "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": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "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 & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2520 }, "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": "Market St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2493 }, "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": "9TH St AND MARKET St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4180 }, "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": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "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": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "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": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4279 }, "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 & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3859 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4142 }, "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": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4143 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3247 }, "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": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "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": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3965 }, "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": "150 Otis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "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": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2671 }, "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": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "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": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2406 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "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, "tippecanoe:retain_points_multiplier_sequence": 294 }, "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": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "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": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1947 }, "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 & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "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": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4062 }, "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 AND MARKET St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4181 }, "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": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "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": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "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": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2402 }, "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": "8th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "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 & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2403 }, "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 & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "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": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2401 }, "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": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "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": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3841 }, "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 St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "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": "8th St&Howard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4184 }, "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": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1587 }, "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": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "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": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1590 }, "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": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "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": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1589 }, "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": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "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": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "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": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "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": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "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": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1894 }, "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": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4282 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1402 }, "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": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "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": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "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": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3858 }, "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, "tippecanoe:retain_points_multiplier_sequence": 984 }, "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": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3792 }, "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, "tippecanoe:retain_points_multiplier_sequence": 315 }, "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 & SANCHEZ ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "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": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "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 & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "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": "Church St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3980 }, "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": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "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 & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "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": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2500 }, "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": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "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": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "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": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "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": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3791 }, "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": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "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": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3244 }, "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 & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3836 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2532 }, "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": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "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": "Church St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 968 }, "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": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4294 }, "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, "tippecanoe:retain_points_multiplier_sequence": 969 }, "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": "Church St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3788 }, "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 & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "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, "tippecanoe:retain_points_multiplier_sequence": 338 }, "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": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "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": "Church St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 970 }, "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": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2516 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3624 }, "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 & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3623 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3596 }, "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 & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3597 }, "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": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3598 }, "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, "tippecanoe:retain_points_multiplier_sequence": 340 }, "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": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "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": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3599 }, "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": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "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": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3600 }, "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": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "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 & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3601 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3602 }, "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": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3603 }, "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, "tippecanoe:retain_points_multiplier_sequence": 397 }, "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": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "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": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "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, "tippecanoe:retain_points_multiplier_sequence": 374 }, "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": "18th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "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": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "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": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "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": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3748 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "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": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "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": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3749 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3039 }, "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/Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3040 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3034 }, "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": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3035 }, "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": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 972 }, "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": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3036 }, "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 & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "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, "tippecanoe:retain_points_multiplier_sequence": 385 }, "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 & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "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": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "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": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3604 }, "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": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3605 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3606 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3607 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3609 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3608 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3610 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3611 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3612 }, "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 & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3613 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3615 }, "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": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3614 }, "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 & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "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": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2410 }, "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": "14th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4169 }, "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": "15th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "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": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "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": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1592 }, "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 & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2412 }, "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": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2413 }, "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": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "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": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2414 }, "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, "tippecanoe:retain_points_multiplier_sequence": 344 }, "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": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "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": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3813 }, "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": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "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": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2415 }, "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": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4167 }, "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": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4178 }, "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": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4170 }, "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": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1593 }, "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 & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3956 }, "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, "tippecanoe:retain_points_multiplier_sequence": 350 }, "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": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "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": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1594 }, "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": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4171 }, "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": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "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 & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "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": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "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 & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "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, "tippecanoe:retain_points_multiplier_sequence": 771 }, "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": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "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": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "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, "tippecanoe:retain_points_multiplier_sequence": 770 }, "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": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "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, "tippecanoe:retain_points_multiplier_sequence": 342 }, "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": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "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": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1596 }, "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, "tippecanoe:retain_points_multiplier_sequence": 748 }, "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": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "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, "tippecanoe:retain_points_multiplier_sequence": 335 }, "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": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "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, "tippecanoe:retain_points_multiplier_sequence": 749 }, "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 & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "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, "tippecanoe:retain_points_multiplier_sequence": 773 }, "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": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "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": "18th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2418 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "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": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2420 }, "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 & 18 th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4177 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4172 }, "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": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4176 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2423 }, "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 & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "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": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2425 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4173 }, "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": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4175 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1598 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4213 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1599 }, "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": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4212 }, "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, "tippecanoe:retain_points_multiplier_sequence": 751 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "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, "tippecanoe:retain_points_multiplier_sequence": 753 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 754 }, "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": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "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": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1601 }, "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": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2883 }, "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": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "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 & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2884 }, "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": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2893 }, "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": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2653 }, "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": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "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": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3904 }, "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": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2228 }, "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": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "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 & Turk", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4284 }, "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": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4283 }, "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": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3969 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3973 }, "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": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "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": "Ellis street & Powell street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4246 }, "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 St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2879 }, "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, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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 STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "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 St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2890 }, "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 & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3978 }, "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 St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2889 }, "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, "tippecanoe:retain_points_multiplier_sequence": 20 }, "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 STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": "Powell/Market", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2888 }, "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": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 652 }, "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": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2496 }, "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": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "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": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "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": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3743 }, "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": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "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": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3288 }, "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": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "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": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2646 }, "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 & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2515 }, "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": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2483 }, "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": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3286 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "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 & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2484 }, "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": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "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": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "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": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2396 }, "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": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3901 }, "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 & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2524 }, "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": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "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": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4166 }, "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 & Mary St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4022 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "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": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2399 }, "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, "tippecanoe:retain_points_multiplier_sequence": 227 }, "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": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2398 }, "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": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "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": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2055 }, "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, "tippecanoe:retain_points_multiplier_sequence": 225 }, "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": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "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": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "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 & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2481 }, "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": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "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": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "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 & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2518 }, "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": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2482 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "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": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2393 }, "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 & Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4287 }, "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": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4077 }, "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": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "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": "4th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2391 }, "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": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2392 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4057 }, "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 & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4058 }, "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": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "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 & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "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": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "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 & Third St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3856 }, "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": "Folsom St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1582 }, "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": "4th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "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, "tippecanoe:retain_points_multiplier_sequence": 223 }, "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": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3903 }, "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 & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "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": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "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": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "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": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "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 & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "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": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "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 & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "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": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1585 }, "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": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "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": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "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 & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1847 }, "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 & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1846 }, "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": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1848 }, "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 & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "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 & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 744 }, "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": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3842 }, "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": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3739 }, "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": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 743 }, "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": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "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": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4190 }, "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": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1845 }, "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, "tippecanoe:retain_points_multiplier_sequence": 224 }, "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": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4165 }, "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": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3983 }, "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 & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 742 }, "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": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 741 }, "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": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4148 }, "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 & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "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": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3453 }, "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 & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3452 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3450 }, "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": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3451 }, "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": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4106 }, "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": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "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": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4084 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "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": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3755 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4131 }, "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, "tippecanoe:retain_points_multiplier_sequence": 72 }, "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": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1580 }, "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": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4289 }, "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": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "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": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1842 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4285 }, "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": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "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": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "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": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4286 }, "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": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "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, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "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": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "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": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3888 }, "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 St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "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 & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4290 }, "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": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1851 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3846 }, "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": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4073 }, "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, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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 & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4105 }, "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": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2107 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2108 }, "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": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3958 }, "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": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "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": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "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": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4248 }, "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": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3448 }, "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 & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3449 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3922 }, "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": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3445 }, "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": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3446 }, "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": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3447 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3740 }, "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, "tippecanoe:retain_points_multiplier_sequence": 218 }, "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, "tippecanoe:retain_points_multiplier_sequence": 221 }, "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": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "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": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "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 & BERRY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3865 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4055 }, "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 & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4049 }, "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 & BERRY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4020 }, "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": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3862 }, "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": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2111 }, "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": "4th St & Berry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4038 }, "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": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3848 }, "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, "tippecanoe:retain_points_multiplier_sequence": 41 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "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": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2112 }, "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": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3444 }, "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": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3443 }, "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": "3rd Street & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4033 }, "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, "tippecanoe:retain_points_multiplier_sequence": 213 }, "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": "4th St & Berry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3987 }, "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": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3986 }, "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": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4012 }, "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": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "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": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "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": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4013 }, "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": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4237 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2868 }, "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 & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2870 }, "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&15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3964 }, "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": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2851 }, "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, "tippecanoe:retain_points_multiplier_sequence": 347 }, "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": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2853 }, "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 & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2852 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2854 }, "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": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "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 & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "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": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "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 & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3628 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3635 }, "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 & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3634 }, "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": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3629 }, "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": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4189 }, "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": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "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 & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "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": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3019 }, "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 & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3020 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "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": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3006 }, "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": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "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": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2097 }, "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, "tippecanoe:retain_points_multiplier_sequence": 367 }, "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, "tippecanoe:retain_points_multiplier_sequence": 369 }, "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": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3008 }, "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": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "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 Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4242 }, "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": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4233 }, "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": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "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": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3009 }, "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, "tippecanoe:retain_points_multiplier_sequence": 365 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4097 }, "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": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "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": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "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": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2101 }, "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": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "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 Street & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4241 }, "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": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4234 }, "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, "tippecanoe:retain_points_multiplier_sequence": 371 }, "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": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "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 & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "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": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "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": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2856 }, "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": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 756 }, "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": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2859 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3630 }, "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": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3631 }, "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": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2858 }, "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, "tippecanoe:retain_points_multiplier_sequence": 757 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "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, "tippecanoe:retain_points_multiplier_sequence": 759 }, "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 & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "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, "tippecanoe:retain_points_multiplier_sequence": 761 }, "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": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 762 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2860 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2861 }, "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": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2862 }, "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": "Sf General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4273 }, "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/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2943 }, "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": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2863 }, "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, "tippecanoe:retain_points_multiplier_sequence": 499 }, "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": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "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": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3632 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3010 }, "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": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "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": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3633 }, "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 & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "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, "tippecanoe:retain_points_multiplier_sequence": 463 }, "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 & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "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": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3013 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3012 }, "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": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3022 }, "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": "Southern Heights Ave & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "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": "De Haro St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3167 }, "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": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3165 }, "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": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "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": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3696 }, "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": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "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": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3004 }, "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, "tippecanoe:retain_points_multiplier_sequence": 500 }, "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 & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "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": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2098 }, "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": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3910 }, "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": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "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 & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3015 }, "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": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "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": "De Haro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "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": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 914 }, "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 & Carolina St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "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": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "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 & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3697 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3707 }, "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": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3706 }, "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": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "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": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3698 }, "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 Street & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4240 }, "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": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4235 }, "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": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3786 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "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 & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "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": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "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": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "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": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "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, "tippecanoe:retain_points_multiplier_sequence": 398 }, "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 & Texas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "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, "tippecanoe:retain_points_multiplier_sequence": 394 }, "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": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "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": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4238 }, "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 Street & 4th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4239 }, "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": "16th St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4236 }, "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": "1731 3RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3882 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3988 }, "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": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3985 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4011 }, "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": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4014 }, "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": "1730 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "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 St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "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/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "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": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "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": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3759 }, "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 Street & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4010 }, "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 St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4035 }, "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": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4015 }, "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": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3869 }, "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": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3409 }, "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": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4036 }, "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": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "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": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "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 & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3863 }, "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": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4102 }, "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": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "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, "tippecanoe:retain_points_multiplier_sequence": 460 }, "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": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2382 }, "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": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2383 }, "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, "tippecanoe:retain_points_multiplier_sequence": 465 }, "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": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2384 }, "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": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "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": "20th St & Texas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3434 }, "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": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3435 }, "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 & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "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": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "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": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "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 & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3699 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3703 }, "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 & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3704 }, "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": "Wisconsin St & Coral Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3705 }, "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": "1095 CONNECTICUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "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": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4103 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4104 }, "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": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "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": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2387 }, "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": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2389 }, "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": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2388 }, "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": "14 Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "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": "101 Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "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, "tippecanoe:retain_points_multiplier_sequence": 481 }, "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": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3839 }, "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": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "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, "tippecanoe:retain_points_multiplier_sequence": 163 }, "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, "tippecanoe:retain_points_multiplier_sequence": 164 }, "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": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3864 }, "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": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4009 }, "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": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "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": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4016 }, "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, "tippecanoe:retain_points_multiplier_sequence": 482 }, "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": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "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, "tippecanoe:retain_points_multiplier_sequence": 166 }, "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": "3RD ST & 22ND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3880 }, "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": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4080 }, "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": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "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 & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 478 }, "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": "22nd St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4087 }, "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": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4091 }, "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, "tippecanoe:retain_points_multiplier_sequence": 167 }, "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": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "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": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4008 }, "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": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3870 }, "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": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4017 }, "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, "tippecanoe:retain_points_multiplier_sequence": 526 }, "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 & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "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": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "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": "Church St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "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": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "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 & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "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, "tippecanoe:retain_points_multiplier_sequence": 980 }, "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": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "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": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "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 & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2569 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2570 }, "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": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "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, "tippecanoe:retain_points_multiplier_sequence": 975 }, "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": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 976 }, "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, "tippecanoe:retain_points_multiplier_sequence": 511 }, "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 & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "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, "tippecanoe:retain_points_multiplier_sequence": 516 }, "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": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "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": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3617 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2572 }, "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 & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2573 }, "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": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2574 }, "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 & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "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": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 587 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3789 }, "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 & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 977 }, "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, "tippecanoe:retain_points_multiplier_sequence": 982 }, "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": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3790 }, "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 & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 586 }, "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": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3981 }, "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": "Church St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 979 }, "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": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3742 }, "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": "Church St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 978 }, "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": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "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": "46 Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "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 & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "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": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 717 }, "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, "tippecanoe:retain_points_multiplier_sequence": 959 }, "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": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "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": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "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": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3721 }, "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, "tippecanoe:retain_points_multiplier_sequence": 962 }, "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 & Miguel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 961 }, "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, "tippecanoe:retain_points_multiplier_sequence": 955 }, "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": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "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, "tippecanoe:retain_points_multiplier_sequence": 581 }, "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": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "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": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "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, "tippecanoe:retain_points_multiplier_sequence": 583 }, "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": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "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": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "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": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2434 }, "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, "tippecanoe:retain_points_multiplier_sequence": 582 }, "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": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "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, "tippecanoe:retain_points_multiplier_sequence": 964 }, "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 & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "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": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "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& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4224 }, "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 & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3090 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3088 }, "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 Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3091 }, "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& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4225 }, "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": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "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 & Appleton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2437 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "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": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2451 }, "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": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "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": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "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": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3616 }, "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, "tippecanoe:retain_points_multiplier_sequence": 529 }, "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": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "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": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "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, "tippecanoe:retain_points_multiplier_sequence": 521 }, "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": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "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": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3618 }, "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": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3619 }, "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": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "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": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2429 }, "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": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "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": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4174 }, "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": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "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": "South Van Ness Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4096 }, "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": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "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": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4168 }, "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": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "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 & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3620 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3622 }, "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": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3621 }, "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 St. & Valencia St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4133 }, "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": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4220 }, "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": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "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, "tippecanoe:retain_points_multiplier_sequence": 930 }, "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": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4109 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "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": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2460 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3626 }, "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": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3625 }, "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 & Power St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4301 }, "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 & Fair Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "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": "Mission St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2472 }, "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": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 931 }, "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": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1603 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1602 }, "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": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3976 }, "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": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "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": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1605 }, "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": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1606 }, "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": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3975 }, "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, "tippecanoe:retain_points_multiplier_sequence": 518 }, "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": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "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": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "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, "tippecanoe:retain_points_multiplier_sequence": 926 }, "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": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "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 St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4110 }, "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 & Cesar Chavz St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4221 }, "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 & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "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 & Bessie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1609 }, "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 & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1617 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1619 }, "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": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "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, "tippecanoe:retain_points_multiplier_sequence": 928 }, "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": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "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": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4223 }, "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 & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "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": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 925 }, "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": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2431 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "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 & Elsie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "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 & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "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": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3028 }, "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 & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3029 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "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": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3027 }, "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": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4126 }, "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": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "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 & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 716 }, "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": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "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 & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "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": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "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 & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3921 }, "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 & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3920 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "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 & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1620 }, "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": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1615 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "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": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "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": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "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 & Bradford St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "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": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3902 }, "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, "tippecanoe:retain_points_multiplier_sequence": 967 }, "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": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "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": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 728 }, "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": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3281 }, "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, "tippecanoe:retain_points_multiplier_sequence": 726 }, "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 & Milton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 725 }, "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": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 724 }, "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": "4080 Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2435 }, "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": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "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": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2440 }, "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": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2201 }, "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": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3030 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "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": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2471 }, "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": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3191 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2467 }, "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": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2466 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3193 }, "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": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3192 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3458 }, "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": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3459 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3188 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4066 }, "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 & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4069 }, "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": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3181 }, "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 & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2456 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "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": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2462 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "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 & College Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "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 & Leese St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "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": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3179 }, "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": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3180 }, "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": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3460 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3185 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3184 }, "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": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3892 }, "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": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "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": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 777 }, "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": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1514 }, "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": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 696 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2752 }, "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 & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2751 }, "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": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2344 }, "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": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2741 }, "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 & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2750 }, "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, "tippecanoe:retain_points_multiplier_sequence": 776 }, "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": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 775 }, "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": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "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": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2539 }, "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": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "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": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "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 & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "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": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 781 }, "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": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "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 & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "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": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2906 }, "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": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "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": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "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": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "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": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 694 }, "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, "tippecanoe:retain_points_multiplier_sequence": 708 }, "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 & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 707 }, "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": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 709 }, "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 & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1526 }, "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": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3929 }, "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": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2904 }, "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, "tippecanoe:retain_points_multiplier_sequence": 47 }, "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, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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 & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "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": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3025 }, "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 & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "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 & Arnold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "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 & Roscoe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "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": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "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": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 664 }, "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": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1510 }, "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": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "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 & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "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": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4194 }, "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": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "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": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "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": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3754 }, "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": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3176 }, "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 & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3177 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3195 }, "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": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3196 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4185 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3898 }, "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": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "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": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "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": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "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 & Ogden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "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": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "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": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "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": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4151 }, "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": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 660 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "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": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3183 }, "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": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3182 }, "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": "Felton St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1529 }, "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": "University St & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3543 }, "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 & Boylston St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3174 }, "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": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3186 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1525 }, "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 & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1524 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "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 & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1523 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "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": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2218 }, "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 & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2219 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3541 }, "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 & Burrows St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3542 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3539 }, "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 & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3540 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3545 }, "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": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3546 }, "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 & Colby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3713 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3715 }, "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": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3716 }, "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": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3544 }, "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 & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3720 }, "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": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3714 }, "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 & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2224 }, "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 & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2225 }, "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": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "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, "tippecanoe:retain_points_multiplier_sequence": 763 }, "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": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 764 }, "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": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "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": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "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": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "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 & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "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, "tippecanoe:retain_points_multiplier_sequence": 767 }, "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": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 768 }, "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": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "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": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2865 }, "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": "24th Street & Potrero Avenue", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4086 }, "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": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "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": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "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": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4222 }, "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": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 924 }, "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": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 785 }, "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": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2099 }, "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": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "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": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "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": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3018 }, "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 & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "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, "tippecanoe:retain_points_multiplier_sequence": 559 }, "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": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 560 }, "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, "tippecanoe:retain_points_multiplier_sequence": 793 }, "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": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3843 }, "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 & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 734 }, "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, "tippecanoe:retain_points_multiplier_sequence": 733 }, "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": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "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, "tippecanoe:retain_points_multiplier_sequence": 795 }, "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": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "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": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3761 }, "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": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "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": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "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": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "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": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3977 }, "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 & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "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 & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 791 }, "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": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 794 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1968 }, "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": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1969 }, "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 & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3762 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "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": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2609 }, "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 & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3442 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3439 }, "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 & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3438 }, "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 & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3441 }, "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": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3440 }, "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 & Elmira St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "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 & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1972 }, "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": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1971 }, "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": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2702 }, "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": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3198 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3701 }, "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": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3700 }, "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, "tippecanoe:retain_points_multiplier_sequence": 555 }, "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": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "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": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3702 }, "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": "Connecticut St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "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, "tippecanoe:retain_points_multiplier_sequence": 548 }, "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": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 549 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "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": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "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": "26th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1493 }, "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": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "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": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "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": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "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 St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "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": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4089 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1500 }, "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 & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3953 }, "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": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4088 }, "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": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4090 }, "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 & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2053 }, "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 & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2054 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2051 }, "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": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "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": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2718 }, "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": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3197 }, "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": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "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": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3194 }, "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 & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2716 }, "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": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "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 & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2774 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2772 }, "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": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2773 }, "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": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1504 }, "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": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3952 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2049 }, "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": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1503 }, "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": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1502 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4019 }, "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": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4006 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3866 }, "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": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "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": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1491 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3871 }, "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 & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "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": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "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": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2048 }, "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 & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "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": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4027 }, "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 & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4025 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4028 }, "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": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4024 }, "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": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2352 }, "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 & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "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, "tippecanoe:retain_points_multiplier_sequence": 190 }, "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": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4044 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4005 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4054 }, "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": "Hudson Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1917 }, "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": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "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 & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4243 }, "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": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4244 }, "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": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4026 }, "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": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4045 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4004 }, "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": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4053 }, "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 & Boutwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "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": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 788 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3200 }, "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": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3199 }, "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": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3154 }, "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": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3178 }, "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, "tippecanoe:retain_points_multiplier_sequence": 797 }, "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, "tippecanoe:retain_points_multiplier_sequence": 799 }, "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": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 798 }, "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": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3175 }, "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": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3153 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3190 }, "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": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3189 }, "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 & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3148 }, "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": "San Bruno Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3155 }, "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": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4281 }, "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": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4298 }, "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, "tippecanoe:retain_points_multiplier_sequence": 711 }, "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": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "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 & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3173 }, "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 & Ledyard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3187 }, "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&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3955 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3202 }, "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": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3201 }, "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": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 738 }, "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": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4232 }, "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": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "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": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 790 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3143 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3144 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3146 }, "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": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3145 }, "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, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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 & Donner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "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": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2768 }, "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": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3595 }, "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 & Williams Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2775 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "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": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1902 }, "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": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1903 }, "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, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "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": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1905 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3711 }, "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 & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3712 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3719 }, "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": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3718 }, "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 & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1906 }, "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": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1904 }, "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": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3717 }, "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, "tippecanoe:retain_points_multiplier_sequence": 713 }, "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": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 712 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "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 & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "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 & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2213 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2214 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "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 & Somerset St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2222 }, "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 & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3161 }, "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 & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3160 }, "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 & Dwight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3147 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3151 }, "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": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "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": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2739 }, "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": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4252 }, "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 & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2734 }, "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 & Wheat St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "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": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "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 & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2209 }, "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": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2212 }, "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": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3150 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "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": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "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": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3149 }, "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": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4251 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3156 }, "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": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3157 }, "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": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3454 }, "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": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "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 & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3457 }, "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 & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3455 }, "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": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3456 }, "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 & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3002 }, "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": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3003 }, "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": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3710 }, "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": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4228 }, "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": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "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": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "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": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "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": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3765 }, "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": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3764 }, "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": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4046 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4052 }, "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": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4003 }, "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 & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "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, "tippecanoe:retain_points_multiplier_sequence": 199 }, "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": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2698 }, "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": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3868 }, "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": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2699 }, "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": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4047 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4002 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4051 }, "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": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3064 }, "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": "3rd St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "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": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3065 }, "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": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3763 }, "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": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2711 }, "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": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3070 }, "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": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4029 }, "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": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3069 }, "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": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4023 }, "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": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "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 & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "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": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3708 }, "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": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3709 }, "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": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3872 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4000 }, "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": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3999 }, "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 & Van Dyke Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "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": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "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": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3594 }, "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": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3592 }, "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": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3593 }, "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": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2737 }, "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": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4059 }, "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, "tippecanoe:retain_points_multiplier_sequence": 174 }, "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": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3968 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3997 }, "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": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3998 }, "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 & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "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, "tippecanoe:retain_points_multiplier_sequence": 178 }, "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 & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "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": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3984 }, "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": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2738 }, "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": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4253 }, "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": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2735 }, "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 & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "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": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4048 }, "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 Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3995 }, "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 St & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4030 }, "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": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4050 }, "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": "3rd St & Key St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "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": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3867 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3996 }, "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": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4001 }, "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": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "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": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1700 }, "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": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4254 }, "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": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4060 }, "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 & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1573 }, "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": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1572 }, "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": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1703 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3591 }, "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": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3590 }, "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": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1571 }, "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": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1702 }, "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": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1570 }, "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": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4094 }, "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": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4100 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4095 }, "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, "tippecanoe:retain_points_multiplier_sequence": 33 }, "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, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "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": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "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": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4071 }, "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": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "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 St & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4032 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4018 }, "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 Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4007 }, "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": "Third St & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4031 }, "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 & ARTHUR AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3881 }, "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": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "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": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "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": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4067 }, "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": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1498 }, "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 & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2368 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2370 }, "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": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2369 }, "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": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4155 }, "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 & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "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/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2372 }, "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": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3795 }, "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": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "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": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "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": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 917 }, "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 & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1501 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1506 }, "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/US Post Office", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3896 }, "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": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1507 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1922 }, "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": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1923 }, "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": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1517 }, "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": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "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": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "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": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1494 }, "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 & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4200 }, "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": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "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": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1496 }, "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": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2363 }, "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": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2708 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2709 }, "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": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2707 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "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": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2104 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2348 }, "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 & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2349 }, "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": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "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": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1919 }, "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": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 915 }, "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": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1918 }, "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": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2350 }, "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": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2160 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3722 }, "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": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3723 }, "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": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3068 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2706 }, "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": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2705 }, "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": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3067 }, "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": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "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": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "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": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2613 }, "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": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "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": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1986 }, "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": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "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 & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "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": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2362 }, "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": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1927 }, "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": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1983 }, "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": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "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": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1921 }, "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 & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2365 }, "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": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3878 }, "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": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "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": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1979 }, "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": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "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 & Osceola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "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": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "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": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1982 }, "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": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "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 & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "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": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2700 }, "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": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2113 }, "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": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2603 }, "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": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "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": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2612 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "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 & Van Dyke Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1989 }, "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": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "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 & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1977 }, "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": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1976 }, "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": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "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": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2602 }, "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 & Fitch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1975 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1974 }, "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": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1973 }, "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": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "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": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "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": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "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 ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3855 }, "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": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3248 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "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": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2997 }, "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": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "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": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3850 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2005 }, "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": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2003 }, "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": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2004 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "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": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2002 }, "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 & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1733 }, "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 & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "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": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 671 }, "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": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "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": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4262 }, "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": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2041 }, "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": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1627 }, "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": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3796 }, "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": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3923 }, "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": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1707 }, "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": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "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": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1708 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "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": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "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, "tippecanoe:retain_points_multiplier_sequence": 413 }, "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": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "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": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "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": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "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 & Cambon Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1624 }, "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": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3741 }, "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 & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2795 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2794 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "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 & Thrift St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2804 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "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 & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2799 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3078 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3824 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3079 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3828 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3077 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3829 }, "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": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2356 }, "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, "tippecanoe:retain_points_multiplier_sequence": 662 }, "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": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 663 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "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": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1780 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2449 }, "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": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2450 }, "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": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1779 }, "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": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4182 }, "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": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "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": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "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 & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2346 }, "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": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "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": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2541 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3060 }, "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": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3059 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2908 }, "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": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "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": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3926 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2744 }, "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": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2743 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "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": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2217 }, "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": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3779 }, "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": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3752 }, "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": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3685 }, "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": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "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 & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3776 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3777 }, "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": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3840 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3783 }, "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": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3782 }, "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": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3682 }, "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": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3683 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3689 }, "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 & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3688 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3686 }, "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": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3687 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3158 }, "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": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3159 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3684 }, "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": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3781 }, "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 & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1992 }, "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": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1991 }, "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 & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1701 }, "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 & Bill Walsh Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "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": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3994 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3731 }, "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 Castro Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2564 }, "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 Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3734 }, "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 Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2567 }, "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/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2565 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3906 }, "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 Embarcadero Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3732 }, "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": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3874 }, "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": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3736 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3907 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "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 Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3905 }, "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/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3737 }, "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 Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2563 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3738 }, "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 Church Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2562 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3735 }, "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": "Feature", "properties": { "name": "Metro Powell Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2288 }, "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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 index e1d578d3d..d727c7f49 100644 --- 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 @@ -16,34693 +16,34693 @@ }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 916, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": 918, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } , -{ "type": "Feature", "properties": { "count": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +{ "type": "Feature", "properties": { "count": 920, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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": 4, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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": 4, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 916, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": 918, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } , -{ "type": "Feature", "properties": { "count": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +{ "type": "Feature", "properties": { "count": 920, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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": 4, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 913, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": 915, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } , -{ "type": "Feature", "properties": { "count": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.840157 ] } } +{ "type": "Feature", "properties": { "count": 918, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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": 4, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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, "tippecanoe:retain_points_multiplier_sequence": 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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 389, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": 391, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } , -{ "type": "Feature", "properties": { "count": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } +{ "type": "Feature", "properties": { "count": 392, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 255, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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": 255, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 257, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 269, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": 4, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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, "tippecanoe:retain_points_multiplier_sequence": 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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 156, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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": 156, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } , -{ "type": "Feature", "properties": { "count": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.525024, 37.831480 ] } } +{ "type": "Feature", "properties": { "count": 157, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 104, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 128, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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, "tippecanoe:retain_points_multiplier_sequence": 30 }, "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, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 131, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 102, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": 102, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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, "tippecanoe:retain_points_multiplier_sequence": 41 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 152, "tippecanoe:retain_points_multiplier_sequence": 37 }, "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": 152, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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": 154, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 155, "tippecanoe:retain_points_multiplier_sequence": 33 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 93, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 93, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 141, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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": 141, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 34, "tippecanoe:retain_points_multiplier_sequence": 36 }, "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, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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": 34, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": 4, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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, "tippecanoe:retain_points_multiplier_sequence": 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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 62, "tippecanoe:retain_points_multiplier_sequence": 33 }, "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, "tippecanoe:retain_points_multiplier_sequence": 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": 62, "tippecanoe:retain_points_multiplier_sequence": 60 }, "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, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } , -{ "type": "Feature", "properties": { "count": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.833649 ] } } +{ "type": "Feature", "properties": { "count": 63, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 41, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 42, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 52, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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": 52, "tippecanoe:retain_points_multiplier_sequence": 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, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 53, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 41, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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, "tippecanoe:retain_points_multiplier_sequence": 30 }, "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, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 41, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 63, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 63, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 35, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 37, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 56, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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": 56, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 57, "tippecanoe:retain_points_multiplier_sequence": 96 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 37, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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": 37, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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, "tippecanoe:retain_points_multiplier_sequence": 45 }, "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, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 38, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 62, "tippecanoe:retain_points_multiplier_sequence": 87 }, "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, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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": 62, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 63, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 40, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 40, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 51, "tippecanoe:retain_points_multiplier_sequence": 84 }, "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, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": 52, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 54, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 39, "tippecanoe:retain_points_multiplier_sequence": 47 }, "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, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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": 38, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": 40, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 38, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 62, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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": 63, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 62, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 37, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 37, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 56, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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": 56, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 57, "tippecanoe:retain_points_multiplier_sequence": 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": { "tippecanoe:retain_points_multiplier_first": true, "count": 37, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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": 37, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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, "tippecanoe:retain_points_multiplier_sequence": 71 }, "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, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 38, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 62, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 63, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 41, "tippecanoe:retain_points_multiplier_sequence": 90 }, "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": 41, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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, "tippecanoe:retain_points_multiplier_sequence": 74 }, "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, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 42, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 34, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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, "tippecanoe:retain_points_multiplier_sequence": 20 }, "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": 34, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.712072 ] } } +{ "type": "Feature", "properties": { "count": 35, "tippecanoe:retain_points_multiplier_sequence": 36 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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": 5, "tippecanoe:retain_points_multiplier_sequence": 64 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 65 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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, "tippecanoe:retain_points_multiplier_sequence": 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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 96 }, "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, "tippecanoe:retain_points_multiplier_sequence": 144 }, "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": 25, "tippecanoe:retain_points_multiplier_sequence": 142 }, "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, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } , -{ "type": "Feature", "properties": { "count": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.832565 ] } } +{ "type": "Feature", "properties": { "count": 26, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 191 }, "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, "tippecanoe:retain_points_multiplier_sequence": 194 }, "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, "tippecanoe:retain_points_multiplier_sequence": 190 }, "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, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.791337 ] } } , -{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.791337 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 120 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 21, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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, "tippecanoe:retain_points_multiplier_sequence": 84 }, "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, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 121 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 36 }, "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, "tippecanoe:retain_points_multiplier_sequence": 37 }, "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": 16, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 30 }, "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, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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, "tippecanoe:retain_points_multiplier_sequence": 56 }, "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, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 125 }, "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, "tippecanoe:retain_points_multiplier_sequence": 124 }, "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, "tippecanoe:retain_points_multiplier_sequence": 213 }, "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, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 22, "tippecanoe:retain_points_multiplier_sequence": 41 }, "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": 22, "tippecanoe:retain_points_multiplier_sequence": 182 }, "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, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 181 }, "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, "tippecanoe:retain_points_multiplier_sequence": 180 }, "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, "tippecanoe:retain_points_multiplier_sequence": 179 }, "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, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 33 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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, "tippecanoe:retain_points_multiplier_sequence": 237 }, "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, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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, "tippecanoe:retain_points_multiplier_sequence": 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": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 21, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 104 }, "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": 21, "tippecanoe:retain_points_multiplier_sequence": 103 }, "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, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 219 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 71 }, "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": 16, "tippecanoe:retain_points_multiplier_sequence": 72 }, "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, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 74 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 13, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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, "tippecanoe:retain_points_multiplier_sequence": 64 }, "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, "tippecanoe:retain_points_multiplier_sequence": 157 }, "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, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 22, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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, "tippecanoe:retain_points_multiplier_sequence": 136 }, "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, "tippecanoe:retain_points_multiplier_sequence": 139 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 14, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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, "tippecanoe:retain_points_multiplier_sequence": 189 }, "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, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 223 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 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, "tippecanoe:retain_points_multiplier_sequence": 168 }, "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, "tippecanoe:retain_points_multiplier_sequence": 169 }, "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, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 174 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 155 }, "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, "tippecanoe:retain_points_multiplier_sequence": 156 }, "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": 16, "tippecanoe:retain_points_multiplier_sequence": 154 }, "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, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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, "tippecanoe:retain_points_multiplier_sequence": 220 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 21, "tippecanoe:retain_points_multiplier_sequence": 151 }, "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": 21, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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, "tippecanoe:retain_points_multiplier_sequence": 112 }, "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, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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, "tippecanoe:retain_points_multiplier_sequence": 185 }, "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, "tippecanoe:retain_points_multiplier_sequence": 186 }, "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, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 183 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 208 }, "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, "tippecanoe:retain_points_multiplier_sequence": 148 }, "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, "tippecanoe:retain_points_multiplier_sequence": 107 }, "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, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 218 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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, "tippecanoe:retain_points_multiplier_sequence": 128 }, "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, "tippecanoe:retain_points_multiplier_sequence": 193 }, "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, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 238 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 22, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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, "tippecanoe:retain_points_multiplier_sequence": 119 }, "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": 22, "tippecanoe:retain_points_multiplier_sequence": 158 }, "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, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.791337 ] } } +{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 117 }, "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, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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, "tippecanoe:retain_points_multiplier_sequence": 199 }, "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, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 232 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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, "tippecanoe:retain_points_multiplier_sequence": 131 }, "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, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.807614 ] } } , -{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.807614 ] } } +{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 102 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 14, "tippecanoe:retain_points_multiplier_sequence": 201 }, "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, "tippecanoe:retain_points_multiplier_sequence": 173 }, "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": 15, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 171 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 21, "tippecanoe:retain_points_multiplier_sequence": 81 }, "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, "tippecanoe:retain_points_multiplier_sequence": 205 }, "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, "tippecanoe:retain_points_multiplier_sequence": 221 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 231 }, "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, "tippecanoe:retain_points_multiplier_sequence": 45 }, "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, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } , -{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 187 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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": 25, "tippecanoe:retain_points_multiplier_sequence": 130 }, "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": 24, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 113 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 14, "tippecanoe:retain_points_multiplier_sequence": 195 }, "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": 13, "tippecanoe:retain_points_multiplier_sequence": 114 }, "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": 14, "tippecanoe:retain_points_multiplier_sequence": 110 }, "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": 15, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.778313 ] } } , -{ "type": "Feature", "properties": { "count": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 23, "tippecanoe:retain_points_multiplier_sequence": 59 }, "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, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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, "tippecanoe:retain_points_multiplier_sequence": 60 }, "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, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.767458 ] } } +{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 14, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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": 15, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": 14, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 20 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 140 }, "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, "tippecanoe:retain_points_multiplier_sequence": 177 }, "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, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786996 ] } } , -{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 137 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 222 }, "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, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 21, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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, "tippecanoe:retain_points_multiplier_sequence": 76 }, "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, "tippecanoe:retain_points_multiplier_sequence": 126 }, "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, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.763116 ] } } , -{ "type": "Feature", "properties": { "count": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 235 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 65 }, "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, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": 16, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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, "tippecanoe:retain_points_multiplier_sequence": 211 }, "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, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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, "tippecanoe:retain_points_multiplier_sequence": 224 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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, "tippecanoe:retain_points_multiplier_sequence": 90 }, "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, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 22, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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": 22, "tippecanoe:retain_points_multiplier_sequence": 51 }, "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, "tippecanoe:retain_points_multiplier_sequence": 160 }, "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, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 153 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 206 }, "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, "tippecanoe:retain_points_multiplier_sequence": 52 }, "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, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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, "tippecanoe:retain_points_multiplier_sequence": 217 }, "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, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 207 }, "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, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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, "tippecanoe:retain_points_multiplier_sequence": 226 }, "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, "tippecanoe:retain_points_multiplier_sequence": 227 }, "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, "tippecanoe:retain_points_multiplier_sequence": 225 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 21, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": 21, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750087 ] } } +{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 215 }, "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": 16, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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, "tippecanoe:retain_points_multiplier_sequence": 166 }, "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, "tippecanoe:retain_points_multiplier_sequence": 165 }, "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, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 233 }, "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, "tippecanoe:retain_points_multiplier_sequence": 163 }, "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, "tippecanoe:retain_points_multiplier_sequence": 164 }, "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, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 47 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 175 }, "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, "tippecanoe:retain_points_multiplier_sequence": 57 }, "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, "tippecanoe:retain_points_multiplier_sequence": 99 }, "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, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 100 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 19, "tippecanoe:retain_points_multiplier_sequence": 202 }, "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, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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": 19, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 214 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 203 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 145 }, "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": 5, "tippecanoe:retain_points_multiplier_sequence": 146 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 147 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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, "tippecanoe:retain_points_multiplier_sequence": 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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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, "tippecanoe:retain_points_multiplier_sequence": 348 }, "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": 10, "tippecanoe:retain_points_multiplier_sequence": 346 }, "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, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.832022 ] } } , -{ "type": "Feature", "properties": { "count": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } +{ "type": "Feature", "properties": { "count": 11, "tippecanoe:retain_points_multiplier_sequence": 131 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 292 }, "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, "tippecanoe:retain_points_multiplier_sequence": 312 }, "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, "tippecanoe:retain_points_multiplier_sequence": 306 }, "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, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.802731 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 349 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 556 }, "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, "tippecanoe:retain_points_multiplier_sequence": 582 }, "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, "tippecanoe:retain_points_multiplier_sequence": 514 }, "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, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 174 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 465 }, "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, "tippecanoe:retain_points_multiplier_sequence": 468 }, "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, "tippecanoe:retain_points_multiplier_sequence": 464 }, "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, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 282 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 128 }, "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, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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, "tippecanoe:retain_points_multiplier_sequence": 126 }, "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, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.804901 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 207 }, "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, "tippecanoe:retain_points_multiplier_sequence": 208 }, "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, "tippecanoe:retain_points_multiplier_sequence": 210 }, "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, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 283 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 391 }, "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, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 140 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 169 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 99 }, "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, "tippecanoe:retain_points_multiplier_sequence": 100 }, "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, "tippecanoe:retain_points_multiplier_sequence": 101 }, "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, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.754973 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 103 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 175 }, "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, "tippecanoe:retain_points_multiplier_sequence": 20 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 110 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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": 8, "tippecanoe:retain_points_multiplier_sequence": 90 }, "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, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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, "tippecanoe:retain_points_multiplier_sequence": 87 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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, "tippecanoe:retain_points_multiplier_sequence": 502 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 231 }, "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, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 433 }, "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, "tippecanoe:retain_points_multiplier_sequence": 289 }, "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, "tippecanoe:retain_points_multiplier_sequence": 524 }, "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, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 525 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 287 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 286 }, "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, "tippecanoe:retain_points_multiplier_sequence": 523 }, "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, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 353 }, "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, "tippecanoe:retain_points_multiplier_sequence": 81 }, "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": 8, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.756058 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 104 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 447 }, "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, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 276 }, "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, "tippecanoe:retain_points_multiplier_sequence": 277 }, "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, "tippecanoe:retain_points_multiplier_sequence": 354 }, "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, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 593 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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, "tippecanoe:retain_points_multiplier_sequence": 445 }, "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, "tippecanoe:retain_points_multiplier_sequence": 446 }, "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, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 444 }, "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, "tippecanoe:retain_points_multiplier_sequence": 443 }, "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, "tippecanoe:retain_points_multiplier_sequence": 442 }, "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, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 130 }, "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, "tippecanoe:retain_points_multiplier_sequence": 500 }, "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, "tippecanoe:retain_points_multiplier_sequence": 499 }, "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, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.730539 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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, "tippecanoe:retain_points_multiplier_sequence": 225 }, "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, "tippecanoe:retain_points_multiplier_sequence": 224 }, "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, "tippecanoe:retain_points_multiplier_sequence": 583 }, "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, "tippecanoe:retain_points_multiplier_sequence": 223 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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, "tippecanoe:retain_points_multiplier_sequence": 371 }, "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, "tippecanoe:retain_points_multiplier_sequence": 573 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 157 }, "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, "tippecanoe:retain_points_multiplier_sequence": 48 }, "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, "tippecanoe:retain_points_multiplier_sequence": 544 }, "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, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 132 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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, "tippecanoe:retain_points_multiplier_sequence": 47 }, "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, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 430 }, "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, "tippecanoe:retain_points_multiplier_sequence": 431 }, "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, "tippecanoe:retain_points_multiplier_sequence": 296 }, "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, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 295 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 247 }, "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, "tippecanoe:retain_points_multiplier_sequence": 246 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 245 }, "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, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 535 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 274 }, "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": 8, "tippecanoe:retain_points_multiplier_sequence": 275 }, "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, "tippecanoe:retain_points_multiplier_sequence": 227 }, "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, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 139 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 177 }, "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, "tippecanoe:retain_points_multiplier_sequence": 178 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 411 }, "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, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786996 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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, "tippecanoe:retain_points_multiplier_sequence": 171 }, "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, "tippecanoe:retain_points_multiplier_sequence": 172 }, "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, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 173 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 193 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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, "tippecanoe:retain_points_multiplier_sequence": 436 }, "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, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 440 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 197 }, "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, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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": 8, "tippecanoe:retain_points_multiplier_sequence": 214 }, "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, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 308 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 211 }, "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, "tippecanoe:retain_points_multiplier_sequence": 212 }, "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, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 263 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 364 }, "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, "tippecanoe:retain_points_multiplier_sequence": 539 }, "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, "tippecanoe:retain_points_multiplier_sequence": 150 }, "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, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 137 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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, "tippecanoe:retain_points_multiplier_sequence": 151 }, "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, "tippecanoe:retain_points_multiplier_sequence": 375 }, "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, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 60 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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, "tippecanoe:retain_points_multiplier_sequence": 165 }, "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, "tippecanoe:retain_points_multiplier_sequence": 167 }, "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, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 168 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 181 }, "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, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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, "tippecanoe:retain_points_multiplier_sequence": 342 }, "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, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763658 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 343 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 65 }, "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, "tippecanoe:retain_points_multiplier_sequence": 182 }, "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, "tippecanoe:retain_points_multiplier_sequence": 183 }, "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, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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, "tippecanoe:retain_points_multiplier_sequence": 52 }, "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, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 56 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 577 }, "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, "tippecanoe:retain_points_multiplier_sequence": 463 }, "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, "tippecanoe:retain_points_multiplier_sequence": 488 }, "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, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 547 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 492 }, "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, "tippecanoe:retain_points_multiplier_sequence": 493 }, "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, "tippecanoe:retain_points_multiplier_sequence": 389 }, "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, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 380 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 76 }, "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, "tippecanoe:retain_points_multiplier_sequence": 401 }, "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, "tippecanoe:retain_points_multiplier_sequence": 402 }, "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, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 426 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 71 }, "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 520 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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, "tippecanoe:retain_points_multiplier_sequence": 72 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 504 }, "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": 8, "tippecanoe:retain_points_multiplier_sequence": 505 }, "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, "tippecanoe:retain_points_multiplier_sequence": 503 }, "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, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 313 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 373 }, "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, "tippecanoe:retain_points_multiplier_sequence": 374 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 372 }, "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, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 537 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 256 }, "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, "tippecanoe:retain_points_multiplier_sequence": 257 }, "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, "tippecanoe:retain_points_multiplier_sequence": 379 }, "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, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.746286 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 381 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 362 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 254 }, "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, "tippecanoe:retain_points_multiplier_sequence": 255 }, "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, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.750629 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 226 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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, "tippecanoe:retain_points_multiplier_sequence": 538 }, "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": 8, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.749544 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 185 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 190 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 189 }, "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, "tippecanoe:retain_points_multiplier_sequence": 187 }, "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, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 191 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 215 }, "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, "tippecanoe:retain_points_multiplier_sequence": 452 }, "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, "tippecanoe:retain_points_multiplier_sequence": 453 }, "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, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 450 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 315 }, "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, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 581 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 517 }, "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, "tippecanoe:retain_points_multiplier_sequence": 358 }, "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, "tippecanoe:retain_points_multiplier_sequence": 249 }, "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, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 534 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 406 }, "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, "tippecanoe:retain_points_multiplier_sequence": 356 }, "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, "tippecanoe:retain_points_multiplier_sequence": 357 }, "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, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 355 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 368 }, "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, "tippecanoe:retain_points_multiplier_sequence": 366 }, "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, "tippecanoe:retain_points_multiplier_sequence": 365 }, "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, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.806529 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 293 }, "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, "tippecanoe:retain_points_multiplier_sequence": 294 }, "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, "tippecanoe:retain_points_multiplier_sequence": 467 }, "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, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 587 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 474 }, "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, "tippecanoe:retain_points_multiplier_sequence": 475 }, "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, "tippecanoe:retain_points_multiplier_sequence": 470 }, "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, "tippecanoe:retain_points_multiplier_sequence": 471 }, "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, "tippecanoe:retain_points_multiplier_sequence": 478 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 378 }, "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, "tippecanoe:retain_points_multiplier_sequence": 281 }, "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, "tippecanoe:retain_points_multiplier_sequence": 377 }, "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, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 407 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 448 }, "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, "tippecanoe:retain_points_multiplier_sequence": 449 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 469 }, "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, "tippecanoe:retain_points_multiplier_sequence": 305 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 301 }, "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, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 154 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 271 }, "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": 8, "tippecanoe:retain_points_multiplier_sequence": 146 }, "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, "tippecanoe:retain_points_multiplier_sequence": 489 }, "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, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 147 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 304 }, "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, "tippecanoe:retain_points_multiplier_sequence": 302 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 303 }, "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, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } , -{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 566 }, "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, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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, "tippecanoe:retain_points_multiplier_sequence": 316 }, "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, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807071 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.807071 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 241 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 201 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 413 }, "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, "tippecanoe:retain_points_multiplier_sequence": 412 }, "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, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.802731 ] } } , -{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801646 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 415 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 410 }, "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, "tippecanoe:retain_points_multiplier_sequence": 240 }, "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": 8, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 239 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 491 }, "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": 5, "tippecanoe:retain_points_multiplier_sequence": 416 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 148 }, "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": 7, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794050 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 408 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 370 }, "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": 9, "tippecanoe:retain_points_multiplier_sequence": 546 }, "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": 10, "tippecanoe:retain_points_multiplier_sequence": 439 }, "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": 9, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 564 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 200 }, "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, "tippecanoe:retain_points_multiplier_sequence": 511 }, "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, "tippecanoe:retain_points_multiplier_sequence": 540 }, "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, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 571 }, "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, "tippecanoe:retain_points_multiplier_sequence": 592 }, "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, "tippecanoe:retain_points_multiplier_sequence": 339 }, "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, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 222 }, "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, "tippecanoe:retain_points_multiplier_sequence": 569 }, "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, "tippecanoe:retain_points_multiplier_sequence": 591 }, "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, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 590 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 565 }, "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, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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, "tippecanoe:retain_points_multiplier_sequence": 112 }, "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, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.815751 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 454 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 179 }, "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, "tippecanoe:retain_points_multiplier_sequence": 473 }, "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, "tippecanoe:retain_points_multiplier_sequence": 472 }, "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, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 575 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 265 }, "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, "tippecanoe:retain_points_multiplier_sequence": 311 }, "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, "tippecanoe:retain_points_multiplier_sequence": 310 }, "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, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 261 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 438 }, "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, "tippecanoe:retain_points_multiplier_sequence": 180 }, "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, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 360 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 272 }, "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": 10, "tippecanoe:retain_points_multiplier_sequence": 309 }, "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": 9, "tippecanoe:retain_points_multiplier_sequence": 243 }, "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, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 541 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 476 }, "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, "tippecanoe:retain_points_multiplier_sequence": 264 }, "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": 5, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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": 7, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 560 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 568 }, "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": 7, "tippecanoe:retain_points_multiplier_sequence": 428 }, "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": 9, "tippecanoe:retain_points_multiplier_sequence": 336 }, "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": 8, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.770715 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 363 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 144 }, "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, "tippecanoe:retain_points_multiplier_sequence": 529 }, "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, "tippecanoe:retain_points_multiplier_sequence": 145 }, "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, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769086 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.767458 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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, "tippecanoe:retain_points_multiplier_sequence": 142 }, "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, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770715 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.769629 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 482 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 481 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 480 }, "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, "tippecanoe:retain_points_multiplier_sequence": 323 }, "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, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768001 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 325 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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, "tippecanoe:retain_points_multiplier_sequence": 194 }, "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": 8, "tippecanoe:retain_points_multiplier_sequence": 121 }, "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, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 59 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 218 }, "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, "tippecanoe:retain_points_multiplier_sequence": 219 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 382 }, "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": 7, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.786996 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 383 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 344 }, "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, "tippecanoe:retain_points_multiplier_sequence": 432 }, "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, "tippecanoe:retain_points_multiplier_sequence": 233 }, "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, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786453 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.786453 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 340 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 536 }, "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, "tippecanoe:retain_points_multiplier_sequence": 217 }, "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, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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, "tippecanoe:retain_points_multiplier_sequence": 460 }, "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, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.771800 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 458 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 543 }, "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, "tippecanoe:retain_points_multiplier_sequence": 41 }, "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, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 45 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 457 }, "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, "tippecanoe:retain_points_multiplier_sequence": 456 }, "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, "tippecanoe:retain_points_multiplier_sequence": 555 }, "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, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 64 }, "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, "tippecanoe:retain_points_multiplier_sequence": 186 }, "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, "tippecanoe:retain_points_multiplier_sequence": 290 }, "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, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.763116 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 579 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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, "tippecanoe:retain_points_multiplier_sequence": 485 }, "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, "tippecanoe:retain_points_multiplier_sequence": 397 }, "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, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 486 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 155 }, "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, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 156 }, "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, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 322 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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, "tippecanoe:retain_points_multiplier_sequence": 30 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 553 }, "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, "tippecanoe:retain_points_multiplier_sequence": 530 }, "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, "tippecanoe:retain_points_multiplier_sequence": 554 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 143 }, "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": 8, "tippecanoe:retain_points_multiplier_sequence": 521 }, "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, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 548 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 333 }, "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, "tippecanoe:retain_points_multiplier_sequence": 332 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 400 }, "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, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 163 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 334 }, "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, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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, "tippecanoe:retain_points_multiplier_sequence": 483 }, "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, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.745743 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 328 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 160 }, "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, "tippecanoe:retain_points_multiplier_sequence": 161 }, "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, "tippecanoe:retain_points_multiplier_sequence": 220 }, "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, "tippecanoe:retain_points_multiplier_sequence": 221 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 335 }, "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, "tippecanoe:retain_points_multiplier_sequence": 422 }, "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": 8, "tippecanoe:retain_points_multiplier_sequence": 421 }, "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, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 462 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 367 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 123 }, "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, "tippecanoe:retain_points_multiplier_sequence": 384 }, "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, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 369 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 512 }, "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, "tippecanoe:retain_points_multiplier_sequence": 109 }, "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, "tippecanoe:retain_points_multiplier_sequence": 419 }, "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, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 423 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 84 }, "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, "tippecanoe:retain_points_multiplier_sequence": 117 }, "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, "tippecanoe:retain_points_multiplier_sequence": 259 }, "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, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 119 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 515 }, "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, "tippecanoe:retain_points_multiplier_sequence": 124 }, "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, "tippecanoe:retain_points_multiplier_sequence": 162 }, "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, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 158 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 204 }, "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, "tippecanoe:retain_points_multiplier_sequence": 562 }, "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, "tippecanoe:retain_points_multiplier_sequence": 563 }, "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, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750629 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 202 }, "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, "tippecanoe:retain_points_multiplier_sequence": 531 }, "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, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 284 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 542 }, "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, "tippecanoe:retain_points_multiplier_sequence": 425 }, "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, "tippecanoe:retain_points_multiplier_sequence": 424 }, "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, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 578 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 501 }, "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, "tippecanoe:retain_points_multiplier_sequence": 114 }, "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, "tippecanoe:retain_points_multiplier_sequence": 113 }, "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, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 298 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 516 }, "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, "tippecanoe:retain_points_multiplier_sequence": 37 }, "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, "tippecanoe:retain_points_multiplier_sequence": 557 }, "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, "tippecanoe:retain_points_multiplier_sequence": 558 }, "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, "tippecanoe:retain_points_multiplier_sequence": 552 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 532 }, "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, "tippecanoe:retain_points_multiplier_sequence": 551 }, "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, "tippecanoe:retain_points_multiplier_sequence": 550 }, "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, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 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, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750087 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 33 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 269 }, "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": 8, "tippecanoe:retain_points_multiplier_sequence": 270 }, "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, "tippecanoe:retain_points_multiplier_sequence": 206 }, "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, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 291 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 267 }, "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, "tippecanoe:retain_points_multiplier_sequence": 268 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 320 }, "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, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 273 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 528 }, "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, "tippecanoe:retain_points_multiplier_sequence": 429 }, "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, "tippecanoe:retain_points_multiplier_sequence": 396 }, "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, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.727823 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 337 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 278 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 394 }, "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, "tippecanoe:retain_points_multiplier_sequence": 585 }, "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, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.713702 ] } } , -{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.713702 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 586 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 567 }, "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, "tippecanoe:retain_points_multiplier_sequence": 392 }, "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": 8, "tippecanoe:retain_points_multiplier_sequence": 393 }, "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, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 331 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 327 }, "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, "tippecanoe:retain_points_multiplier_sequence": 404 }, "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, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 405 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 329 }, "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, "tippecanoe:retain_points_multiplier_sequence": 330 }, "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, "tippecanoe:retain_points_multiplier_sequence": 250 }, "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, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 572 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 427 }, "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, "tippecanoe:retain_points_multiplier_sequence": 141 }, "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, "tippecanoe:retain_points_multiplier_sequence": 236 }, "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, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 237 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 417 }, "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, "tippecanoe:retain_points_multiplier_sequence": 435 }, "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, "tippecanoe:retain_points_multiplier_sequence": 479 }, "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, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 258 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 494 }, "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, "tippecanoe:retain_points_multiplier_sequence": 195 }, "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, "tippecanoe:retain_points_multiplier_sequence": 518 }, "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, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 527 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 498 }, "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, "tippecanoe:retain_points_multiplier_sequence": 497 }, "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, "tippecanoe:retain_points_multiplier_sequence": 495 }, "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, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716961 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 418 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 510 }, "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, "tippecanoe:retain_points_multiplier_sequence": 509 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 508 }, "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, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 576 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 506 }, "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, "tippecanoe:retain_points_multiplier_sequence": 350 }, "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, "tippecanoe:retain_points_multiplier_sequence": 351 }, "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, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 352 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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, "tippecanoe:retain_points_multiplier_sequence": 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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 319 }, "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, "tippecanoe:retain_points_multiplier_sequence": 396 }, "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, "tippecanoe:retain_points_multiplier_sequence": 317 }, "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, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 316 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 147 }, "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, "tippecanoe:retain_points_multiplier_sequence": 148 }, "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, "tippecanoe:retain_points_multiplier_sequence": 331 }, "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, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 332 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 315 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 323 }, "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, "tippecanoe:retain_points_multiplier_sequence": 314 }, "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, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 313 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 322 }, "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, "tippecanoe:retain_points_multiplier_sequence": 320 }, "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, "tippecanoe:retain_points_multiplier_sequence": 321 }, "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, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 325 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 56 }, "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, "tippecanoe:retain_points_multiplier_sequence": 363 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 362 }, "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, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730539 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 36 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": 8, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 104 }, "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, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 103 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 20 }, "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, "tippecanoe:retain_points_multiplier_sequence": 272 }, "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, "tippecanoe:retain_points_multiplier_sequence": 273 }, "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, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 326 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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, "tippecanoe:retain_points_multiplier_sequence": 271 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 387 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 329 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 299 }, "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, "tippecanoe:retain_points_multiplier_sequence": 298 }, "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, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 218 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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, "tippecanoe:retain_points_multiplier_sequence": 384 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 210 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 367 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 368 }, "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, "tippecanoe:retain_points_multiplier_sequence": 366 }, "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, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 164 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 168 }, "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, "tippecanoe:retain_points_multiplier_sequence": 169 }, "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, "tippecanoe:retain_points_multiplier_sequence": 173 }, "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, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 385 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 252 }, "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, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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, "tippecanoe:retain_points_multiplier_sequence": 212 }, "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, "tippecanoe:retain_points_multiplier_sequence": 207 }, "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, "tippecanoe:retain_points_multiplier_sequence": 402 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 248 }, "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, "tippecanoe:retain_points_multiplier_sequence": 249 }, "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, "tippecanoe:retain_points_multiplier_sequence": 247 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 398 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 275 }, "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, "tippecanoe:retain_points_multiplier_sequence": 401 }, "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, "tippecanoe:retain_points_multiplier_sequence": 274 }, "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, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 220 }, "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, "tippecanoe:retain_points_multiplier_sequence": 399 }, "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, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 81 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 87 }, "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, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738413 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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, "tippecanoe:retain_points_multiplier_sequence": 171 }, "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, "tippecanoe:retain_points_multiplier_sequence": 166 }, "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, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 405 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 100 }, "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, "tippecanoe:retain_points_multiplier_sequence": 340 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 341 }, "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, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 338 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 238 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 239 }, "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, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 136 }, "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, "tippecanoe:retain_points_multiplier_sequence": 124 }, "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, "tippecanoe:retain_points_multiplier_sequence": 125 }, "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, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 158 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 174 }, "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, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 428 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 281 }, "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, "tippecanoe:retain_points_multiplier_sequence": 284 }, "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, "tippecanoe:retain_points_multiplier_sequence": 113 }, "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, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 285 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 379 }, "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, "tippecanoe:retain_points_multiplier_sequence": 217 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 123 }, "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, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 395 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 163 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 380 }, "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, "tippecanoe:retain_points_multiplier_sequence": 291 }, "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, "tippecanoe:retain_points_multiplier_sequence": 290 }, "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, "tippecanoe:retain_points_multiplier_sequence": 381 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 41 }, "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, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732439 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 107 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 288 }, "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, "tippecanoe:retain_points_multiplier_sequence": 214 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 215 }, "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, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 208 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 189 }, "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, "tippecanoe:retain_points_multiplier_sequence": 213 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 199 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 233 }, "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, "tippecanoe:retain_points_multiplier_sequence": 232 }, "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, "tippecanoe:retain_points_multiplier_sequence": 181 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 30 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "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, "tippecanoe:retain_points_multiplier_sequence": 264 }, "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, "tippecanoe:retain_points_multiplier_sequence": 365 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 60 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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, "tippecanoe:retain_points_multiplier_sequence": 424 }, "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, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 286 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 195 }, "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, "tippecanoe:retain_points_multiplier_sequence": 194 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 269 }, "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, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 71 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 102 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 206 }, "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, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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, "tippecanoe:retain_points_multiplier_sequence": 397 }, "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, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 202 }, "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, "tippecanoe:retain_points_multiplier_sequence": 307 }, "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, "tippecanoe:retain_points_multiplier_sequence": 306 }, "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, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730810 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 346 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 201 }, "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, "tippecanoe:retain_points_multiplier_sequence": 200 }, "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, "tippecanoe:retain_points_multiplier_sequence": 76 }, "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, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 230 }, "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, "tippecanoe:retain_points_multiplier_sequence": 231 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 235 }, "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, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 47 }, "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, "tippecanoe:retain_points_multiplier_sequence": 258 }, "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, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 237 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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, "tippecanoe:retain_points_multiplier_sequence": 270 }, "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, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 373 }, "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, "tippecanoe:retain_points_multiplier_sequence": 33 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 301 }, "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, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 308 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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, "tippecanoe:retain_points_multiplier_sequence": 305 }, "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, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727552 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 98 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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, "tippecanoe:retain_points_multiplier_sequence": 161 }, "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, "tippecanoe:retain_points_multiplier_sequence": 162 }, "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, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 348 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 243 }, "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, "tippecanoe:retain_points_multiplier_sequence": 244 }, "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, "tippecanoe:retain_points_multiplier_sequence": 224 }, "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, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 242 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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, "tippecanoe:retain_points_multiplier_sequence": 426 }, "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, "tippecanoe:retain_points_multiplier_sequence": 427 }, "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, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737327 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 411 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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, "tippecanoe:retain_points_multiplier_sequence": 310 }, "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, "tippecanoe:retain_points_multiplier_sequence": 309 }, "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, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 303 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 400 }, "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, "tippecanoe:retain_points_multiplier_sequence": 312 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 311 }, "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, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 425 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 240 }, "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, "tippecanoe:retain_points_multiplier_sequence": 241 }, "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, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.730267 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.730267 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 245 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 364 }, "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, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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, "tippecanoe:retain_points_multiplier_sequence": 37 }, "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, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 228 }, "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, "tippecanoe:retain_points_multiplier_sequence": 429 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 225 }, "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, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 227 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 344 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 342 }, "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, "tippecanoe:retain_points_multiplier_sequence": 343 }, "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, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 268 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 375 }, "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, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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, "tippecanoe:retain_points_multiplier_sequence": 413 }, "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, "tippecanoe:retain_points_multiplier_sequence": 416 }, "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, "tippecanoe:retain_points_multiplier_sequence": 409 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 223 }, "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, "tippecanoe:retain_points_multiplier_sequence": 279 }, "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, "tippecanoe:retain_points_multiplier_sequence": 412 }, "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, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 410 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 393 }, "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, "tippecanoe:retain_points_multiplier_sequence": 408 }, "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, "tippecanoe:retain_points_multiplier_sequence": 407 }, "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, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 430 }, "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, "tippecanoe:retain_points_multiplier_sequence": 226 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 414 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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, "tippecanoe:retain_points_multiplier_sequence": 431 }, "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, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 99 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 139 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 140 }, "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, "tippecanoe:retain_points_multiplier_sequence": 96 }, "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, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 155 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 222 }, "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, "tippecanoe:retain_points_multiplier_sequence": 156 }, "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, "tippecanoe:retain_points_multiplier_sequence": 157 }, "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, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 183 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 277 }, "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, "tippecanoe:retain_points_multiplier_sequence": 145 }, "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, "tippecanoe:retain_points_multiplier_sequence": 221 }, "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, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 184 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 137 }, "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, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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, "tippecanoe:retain_points_multiplier_sequence": 185 }, "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, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 144 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 146 }, "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, "tippecanoe:retain_points_multiplier_sequence": 143 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 142 }, "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, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 118 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 390 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 328 }, "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, "tippecanoe:retain_points_multiplier_sequence": 266 }, "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, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 204 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 133 }, "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, "tippecanoe:retain_points_multiplier_sequence": 121 }, "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, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 153 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 120 }, "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, "tippecanoe:retain_points_multiplier_sequence": 119 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 263 }, "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, "tippecanoe:retain_points_multiplier_sequence": 436 }, "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, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 437 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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, "tippecanoe:retain_points_multiplier_sequence": 391 }, "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, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 419 }, "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, "tippecanoe:retain_points_multiplier_sequence": 261 }, "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, "tippecanoe:retain_points_multiplier_sequence": 262 }, "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, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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, "tippecanoe:retain_points_multiplier_sequence": 251 }, "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, "tippecanoe:retain_points_multiplier_sequence": 250 }, "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, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 256 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 255 }, "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, "tippecanoe:retain_points_multiplier_sequence": 292 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 254 }, "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, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710443 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 300 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 193 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 190 }, "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, "tippecanoe:retain_points_multiplier_sequence": 282 }, "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, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 283 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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, "tippecanoe:retain_points_multiplier_sequence": 187 }, "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, "tippecanoe:retain_points_multiplier_sequence": 197 }, "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, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 422 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 191 }, "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, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 126 }, "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, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 421 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 179 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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, "tippecanoe:retain_points_multiplier_sequence": 177 }, "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, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 178 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 259 }, "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, "tippecanoe:retain_points_multiplier_sequence": 128 }, "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, "tippecanoe:retain_points_multiplier_sequence": 205 }, "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, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 203 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 327 }, "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, "tippecanoe:retain_points_multiplier_sequence": 57 }, "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, "tippecanoe:retain_points_multiplier_sequence": 110 }, "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, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 114 }, "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, "tippecanoe:retain_points_multiplier_sequence": 335 }, "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, "tippecanoe:retain_points_multiplier_sequence": 336 }, "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, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 334 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 293 }, "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, "tippecanoe:retain_points_multiplier_sequence": 337 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 352 }, "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, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 404 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 356 }, "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, "tippecanoe:retain_points_multiplier_sequence": 403 }, "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, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 351 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 131 }, "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, "tippecanoe:retain_points_multiplier_sequence": 294 }, "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, "tippecanoe:retain_points_multiplier_sequence": 130 }, "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, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 116 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 357 }, "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, "tippecanoe:retain_points_multiplier_sequence": 90 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 382 }, "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, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 388 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 276 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 377 }, "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, "tippecanoe:retain_points_multiplier_sequence": 378 }, "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, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 353 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 361 }, "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, "tippecanoe:retain_points_multiplier_sequence": 360 }, "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, "tippecanoe:retain_points_multiplier_sequence": 358 }, "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, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 297 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 48 }, "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, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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, "tippecanoe:retain_points_multiplier_sequence": 392 }, "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, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 415 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 51 }, "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, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 372 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 371 }, "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, "tippecanoe:retain_points_multiplier_sequence": 370 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 369 }, "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, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 423 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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, "tippecanoe:retain_points_multiplier_sequence": 246 }, "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, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 541 }, "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, "tippecanoe:retain_points_multiplier_sequence": 855 }, "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, "tippecanoe:retain_points_multiplier_sequence": 853 }, "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, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831751 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 274 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 786 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 787 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1427 }, "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, "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 755 }, "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, "tippecanoe:retain_points_multiplier_sequence": 242 }, "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, "tippecanoe:retain_points_multiplier_sequence": 241 }, "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, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.790252 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 700 }, "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, "tippecanoe:retain_points_multiplier_sequence": 754 }, "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, "tippecanoe:retain_points_multiplier_sequence": 740 }, "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, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 856 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 742 }, "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, "tippecanoe:retain_points_multiplier_sequence": 698 }, "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, "tippecanoe:retain_points_multiplier_sequence": 222 }, "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, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "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, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798120 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 413 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 708 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 709 }, "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, "tippecanoe:retain_points_multiplier_sequence": 587 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 51 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "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, "tippecanoe:retain_points_multiplier_sequence": 703 }, "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, "tippecanoe:retain_points_multiplier_sequence": 704 }, "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, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.797034 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "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, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 674 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 313 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 705 }, "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, "tippecanoe:retain_points_multiplier_sequence": 706 }, "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, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 270 }, "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, "tippecanoe:retain_points_multiplier_sequence": 269 }, "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, "tippecanoe:retain_points_multiplier_sequence": 268 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805173 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 56 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "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, "tippecanoe:retain_points_multiplier_sequence": 516 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "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, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791608 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791608 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 466 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 508 }, "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, "tippecanoe:retain_points_multiplier_sequence": 509 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 511 }, "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, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 676 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 295 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "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, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788895 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.791608 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 993 }, "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, "tippecanoe:retain_points_multiplier_sequence": 217 }, "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, "tippecanoe:retain_points_multiplier_sequence": 48 }, "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, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 307 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 796 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 795 }, "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, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 988 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 47 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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, "tippecanoe:retain_points_multiplier_sequence": 306 }, "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, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 203 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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, "tippecanoe:retain_points_multiplier_sequence": 45 }, "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, "tippecanoe:retain_points_multiplier_sequence": 425 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 402 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 688 }, "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, "tippecanoe:retain_points_multiplier_sequence": 689 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760130 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 204 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 205 }, "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, "tippecanoe:retain_points_multiplier_sequence": 206 }, "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, "tippecanoe:retain_points_multiplier_sequence": 207 }, "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, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754973 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 197 }, "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, "tippecanoe:retain_points_multiplier_sequence": 346 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 200 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 202 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 201 }, "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, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 344 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 424 }, "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, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 224 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 401 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1477 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 195 }, "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, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 177 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 181 }, "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, "tippecanoe:retain_points_multiplier_sequence": 283 }, "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, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.784011 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 179 }, "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, "tippecanoe:retain_points_multiplier_sequence": 422 }, "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, "tippecanoe:retain_points_multiplier_sequence": 423 }, "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, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 343 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 173 }, "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, "tippecanoe:retain_points_multiplier_sequence": 174 }, "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, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 178 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "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, "tippecanoe:retain_points_multiplier_sequence": 544 }, "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, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.772614 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.776414 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 37 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 724 }, "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, "tippecanoe:retain_points_multiplier_sequence": 722 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 723 }, "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, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 720 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 687 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "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, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 685 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "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, "tippecanoe:retain_points_multiplier_sequence": 869 }, "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, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753615 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 867 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 163 }, "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, "tippecanoe:retain_points_multiplier_sequence": 718 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 719 }, "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, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.763658 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 717 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 684 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 683 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "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, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 166 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 866 }, "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, "tippecanoe:retain_points_multiplier_sequence": 681 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "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, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 162 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 865 }, "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, "tippecanoe:retain_points_multiplier_sequence": 164 }, "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, "tippecanoe:retain_points_multiplier_sequence": 148 }, "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, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.756058 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 150 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 874 }, "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, "tippecanoe:retain_points_multiplier_sequence": 211 }, "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, "tippecanoe:retain_points_multiplier_sequence": 210 }, "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, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 212 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 872 }, "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, "tippecanoe:retain_points_multiplier_sequence": 871 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 870 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.747643 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 213 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "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, "tippecanoe:retain_points_multiplier_sequence": 214 }, "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, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 215 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 663 }, "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, "tippecanoe:retain_points_multiplier_sequence": 664 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 875 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1476 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 190 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "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, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 999 }, "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, "tippecanoe:retain_points_multiplier_sequence": 997 }, "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, "tippecanoe:retain_points_multiplier_sequence": 998 }, "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, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 996 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742757 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 189 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 273 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "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, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730539 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 154 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 227 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 225 }, "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, "tippecanoe:retain_points_multiplier_sequence": 226 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 272 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 271 }, "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, "tippecanoe:retain_points_multiplier_sequence": 534 }, "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, "tippecanoe:retain_points_multiplier_sequence": 533 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 532 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 342 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1401 }, "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, "tippecanoe:retain_points_multiplier_sequence": 340 }, "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, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 421 }, "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, "tippecanoe:retain_points_multiplier_sequence": 281 }, "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, "tippecanoe:retain_points_multiplier_sequence": 282 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 36 }, "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, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 409 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 938 }, "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, "tippecanoe:retain_points_multiplier_sequence": 542 }, "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, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 374 }, "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, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "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, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 279 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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, "tippecanoe:retain_points_multiplier_sequence": 339 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 420 }, "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, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.781298 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.786996 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "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, "tippecanoe:retain_points_multiplier_sequence": 338 }, "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, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.782926 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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, "tippecanoe:retain_points_multiplier_sequence": 87 }, "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, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 33 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "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, "tippecanoe:retain_points_multiplier_sequence": 403 }, "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, "tippecanoe:retain_points_multiplier_sequence": 230 }, "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, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.774243 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.774785 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 412 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "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, "tippecanoe:retain_points_multiplier_sequence": 715 }, "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, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 714 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 712 }, "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, "tippecanoe:retain_points_multiplier_sequence": 96 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 661 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "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, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.757959 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 680 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 584 }, "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, "tippecanoe:retain_points_multiplier_sequence": 583 }, "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, "tippecanoe:retain_points_multiplier_sequence": 582 }, "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, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 713 }, "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, "tippecanoe:retain_points_multiplier_sequence": 710 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 711 }, "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, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 659 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 658 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 662 }, "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, "tippecanoe:retain_points_multiplier_sequence": 536 }, "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, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 304 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 580 }, "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, "tippecanoe:retain_points_multiplier_sequence": 581 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 479 }, "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, "tippecanoe:retain_points_multiplier_sequence": 478 }, "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, "tippecanoe:retain_points_multiplier_sequence": 294 }, "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, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.786996 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787539 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 426 }, "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, "tippecanoe:retain_points_multiplier_sequence": 427 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "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, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787267 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.787267 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 298 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 850 }, "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, "tippecanoe:retain_points_multiplier_sequence": 546 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 985 }, "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, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.782383 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 547 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 405 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 406 }, "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, "tippecanoe:retain_points_multiplier_sequence": 410 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.774785 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 411 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "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, "tippecanoe:retain_points_multiplier_sequence": 849 }, "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, "tippecanoe:retain_points_multiplier_sequence": 408 }, "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, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775871 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775871 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 407 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "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, "tippecanoe:retain_points_multiplier_sequence": 622 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 623 }, "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, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 851 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 469 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 468 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 464 }, "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, "tippecanoe:retain_points_multiplier_sequence": 463 }, "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, "tippecanoe:retain_points_multiplier_sequence": 548 }, "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, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 480 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 483 }, "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, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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, "tippecanoe:retain_points_multiplier_sequence": 515 }, "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, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 510 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "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, "tippecanoe:retain_points_multiplier_sequence": 745 }, "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, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 624 }, "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, "tippecanoe:retain_points_multiplier_sequence": 626 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 465 }, "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, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 467 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 746 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 512 }, "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, "tippecanoe:retain_points_multiplier_sequence": 513 }, "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, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.775328 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 630 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 612 }, "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, "tippecanoe:retain_points_multiplier_sequence": 613 }, "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, "tippecanoe:retain_points_multiplier_sequence": 361 }, "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, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.769629 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 611 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 912 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 358 }, "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, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 302 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 231 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 538 }, "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, "tippecanoe:retain_points_multiplier_sequence": 351 }, "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, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767187 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1349 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "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, "tippecanoe:retain_points_multiplier_sequence": 347 }, "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, "tippecanoe:retain_points_multiplier_sequence": 348 }, "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, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 354 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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, "tippecanoe:retain_points_multiplier_sequence": 359 }, "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, "tippecanoe:retain_points_multiplier_sequence": 951 }, "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, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 387 }, "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, "tippecanoe:retain_points_multiplier_sequence": 349 }, "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, "tippecanoe:retain_points_multiplier_sequence": 388 }, "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, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 352 }, "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, "tippecanoe:retain_points_multiplier_sequence": 386 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 390 }, "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, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.755244 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 391 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 278 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "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, "tippecanoe:retain_points_multiplier_sequence": 277 }, "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": 4, "tippecanoe:retain_points_multiplier_sequence": 107 }, "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": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1359 }, "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, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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, "tippecanoe:retain_points_multiplier_sequence": 109 }, "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, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 433 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 434 }, "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, "tippecanoe:retain_points_multiplier_sequence": 130 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 842 }, "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, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 843 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 603 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 634 }, "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, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.756058 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 496 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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, "tippecanoe:retain_points_multiplier_sequence": 435 }, "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, "tippecanoe:retain_points_multiplier_sequence": 436 }, "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, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 994 }, "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, "tippecanoe:retain_points_multiplier_sequence": 124 }, "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, "tippecanoe:retain_points_multiplier_sequence": 125 }, "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, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.744929 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "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, "tippecanoe:retain_points_multiplier_sequence": 896 }, "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, "tippecanoe:retain_points_multiplier_sequence": 99 }, "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, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 895 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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, "tippecanoe:retain_points_multiplier_sequence": 104 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 112 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741128 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1411 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 695 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "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, "tippecanoe:retain_points_multiplier_sequence": 336 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.749815 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.753073 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 337 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1341 }, "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, "tippecanoe:retain_points_multiplier_sequence": 696 }, "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, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 726 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "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, "tippecanoe:retain_points_multiplier_sequence": 990 }, "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, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 961 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 960 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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, "tippecanoe:retain_points_multiplier_sequence": 769 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 151 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 497 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 498 }, "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, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 890 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 145 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 146 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 636 }, "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, "tippecanoe:retain_points_multiplier_sequence": 238 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 418 }, "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, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 882 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "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, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 758 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 762 }, "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, "tippecanoe:retain_points_multiplier_sequence": 763 }, "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, "tippecanoe:retain_points_multiplier_sequence": 767 }, "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, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 945 }, "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, "tippecanoe:retain_points_multiplier_sequence": 946 }, "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, "tippecanoe:retain_points_multiplier_sequence": 884 }, "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, "tippecanoe:retain_points_multiplier_sequence": 879 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 941 }, "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, "tippecanoe:retain_points_multiplier_sequence": 942 }, "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, "tippecanoe:retain_points_multiplier_sequence": 940 }, "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, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "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, "tippecanoe:retain_points_multiplier_sequence": 989 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 982 }, "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, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.750358 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 399 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 606 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 607 }, "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, "tippecanoe:retain_points_multiplier_sequence": 959 }, "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, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746557 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 962 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "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, "tippecanoe:retain_points_multiplier_sequence": 476 }, "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, "tippecanoe:retain_points_multiplier_sequence": 414 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743571 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "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, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 771 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 897 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 604 }, "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, "tippecanoe:retain_points_multiplier_sequence": 605 }, "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, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750629 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 535 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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, "tippecanoe:retain_points_multiplier_sequence": 608 }, "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, "tippecanoe:retain_points_multiplier_sequence": 445 }, "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, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 477 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 169 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "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, "tippecanoe:retain_points_multiplier_sequence": 172 }, "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, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751444 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 438 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 448 }, "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, "tippecanoe:retain_points_multiplier_sequence": 453 }, "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, "tippecanoe:retain_points_multiplier_sequence": 454 }, "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, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 450 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 458 }, "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, "tippecanoe:retain_points_multiplier_sequence": 446 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 457 }, "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, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741671 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 447 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 460 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 459 }, "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, "tippecanoe:retain_points_multiplier_sequence": 451 }, "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, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 461 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 764 }, "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, "tippecanoe:retain_points_multiplier_sequence": 765 }, "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, "tippecanoe:retain_points_multiplier_sequence": 760 }, "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, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 518 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 926 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 927 }, "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, "tippecanoe:retain_points_multiplier_sequence": 888 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 881 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 637 }, "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, "tippecanoe:retain_points_multiplier_sequence": 589 }, "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, "tippecanoe:retain_points_multiplier_sequence": 590 }, "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, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 707 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 768 }, "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, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "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, "tippecanoe:retain_points_multiplier_sequence": 559 }, "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, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "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, "tippecanoe:retain_points_multiplier_sequence": 889 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 588 }, "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, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 757 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 240 }, "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, "tippecanoe:retain_points_multiplier_sequence": 455 }, "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, "tippecanoe:retain_points_multiplier_sequence": 239 }, "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, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732439 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 553 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "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, "tippecanoe:retain_points_multiplier_sequence": 886 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 887 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 880 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 258 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 814 }, "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, "tippecanoe:retain_points_multiplier_sequence": 885 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 826 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 924 }, "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, "tippecanoe:retain_points_multiplier_sequence": 921 }, "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, "tippecanoe:retain_points_multiplier_sequence": 920 }, "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, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.806258 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 57 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 772 }, "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, "tippecanoe:retain_points_multiplier_sequence": 362 }, "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, "tippecanoe:retain_points_multiplier_sequence": 368 }, "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, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.808699 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 678 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "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, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "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, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.808428 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.807614 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 701 }, "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, "tippecanoe:retain_points_multiplier_sequence": 702 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.800832 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804088 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.805173 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 776 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 671 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 906 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 952 }, "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, "tippecanoe:retain_points_multiplier_sequence": 953 }, "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, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.795135 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 901 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 958 }, "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, "tippecanoe:retain_points_multiplier_sequence": 673 }, "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, "tippecanoe:retain_points_multiplier_sequence": 957 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 296 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "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, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.804630 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.804901 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 642 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "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, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 651 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.799747 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 366 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 365 }, "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, "tippecanoe:retain_points_multiplier_sequence": 732 }, "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, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.802189 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 367 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "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, "tippecanoe:retain_points_multiplier_sequence": 739 }, "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, "tippecanoe:retain_points_multiplier_sequence": 735 }, "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, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.799205 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 369 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 644 }, "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, "tippecanoe:retain_points_multiplier_sequence": 645 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 900 }, "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, "tippecanoe:retain_points_multiplier_sequence": 648 }, "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, "tippecanoe:retain_points_multiplier_sequence": 899 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 647 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 332 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "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, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 334 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 956 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "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, "tippecanoe:retain_points_multiplier_sequence": 649 }, "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, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 289 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 905 }, "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, "tippecanoe:retain_points_multiplier_sequence": 904 }, "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, "tippecanoe:retain_points_multiplier_sequence": 675 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 333 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 738 }, "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, "tippecanoe:retain_points_multiplier_sequence": 736 }, "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, "tippecanoe:retain_points_multiplier_sequence": 737 }, "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, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 290 }, "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, "tippecanoe:retain_points_multiplier_sequence": 300 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 276 }, "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, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789438 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788353 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 585 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 30 }, "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, "tippecanoe:retain_points_multiplier_sequence": 774 }, "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, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807343 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.807071 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 568 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "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, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.802731 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.801918 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 903 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.800832 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 493 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "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, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801375 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "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, "tippecanoe:retain_points_multiplier_sequence": 902 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "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, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "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, "tippecanoe:retain_points_multiplier_sequence": 567 }, "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, "tippecanoe:retain_points_multiplier_sequence": 363 }, "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, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 566 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 569 }, "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, "tippecanoe:retain_points_multiplier_sequence": 565 }, "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, "tippecanoe:retain_points_multiplier_sequence": 291 }, "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, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 297 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 978 }, "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, "tippecanoe:retain_points_multiplier_sequence": 976 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 977 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.789981 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789709 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "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, "tippecanoe:retain_points_multiplier_sequence": 335 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 285 }, "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, "tippecanoe:retain_points_multiplier_sequence": 286 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 288 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 936 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 933 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790252 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1404 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 52 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 485 }, "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, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 492 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 935 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 287 }, "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": 4, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 441 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 489 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "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, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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, "tippecanoe:retain_points_multiplier_sequence": 20 }, "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, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794322 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1474 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 837 }, "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, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791608 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.791608 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 727 }, "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, "tippecanoe:retain_points_multiplier_sequence": 824 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 813 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1415 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "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, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 491 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 531 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "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, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 103 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "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, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 232 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "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, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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, "tippecanoe:retain_points_multiplier_sequence": 235 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.816022 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.371559, 37.816293 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 756 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "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, "tippecanoe:retain_points_multiplier_sequence": 784 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 633 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1133 }, "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, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 430 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 428 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 747 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 748 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1436 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.782383 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 632 }, "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, "tippecanoe:retain_points_multiplier_sequence": 751 }, "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, "tippecanoe:retain_points_multiplier_sequence": 750 }, "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, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 625 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 610 }, "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, "tippecanoe:retain_points_multiplier_sequence": 743 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 601 }, "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, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 599 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 614 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "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, "tippecanoe:retain_points_multiplier_sequence": 907 }, "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, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "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, "tippecanoe:retain_points_multiplier_sequence": 429 }, "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, "tippecanoe:retain_points_multiplier_sequence": 551 }, "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, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785097 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 893 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 417 }, "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, "tippecanoe:retain_points_multiplier_sequence": 752 }, "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, "tippecanoe:retain_points_multiplier_sequence": 753 }, "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, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783469 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 576 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 650 }, "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, "tippecanoe:retain_points_multiplier_sequence": 749 }, "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, "tippecanoe:retain_points_multiplier_sequence": 578 }, "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, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 892 }, "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, "tippecanoe:retain_points_multiplier_sequence": 481 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 964 }, "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, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.787267 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 431 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 415 }, "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, "tippecanoe:retain_points_multiplier_sequence": 416 }, "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": 4, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.782926 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1425 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "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, "tippecanoe:retain_points_multiplier_sequence": 631 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 602 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "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, "tippecanoe:retain_points_multiplier_sequence": 101 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 102 }, "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": 4, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "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": 5, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 831 }, "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": 7, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 898 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 523 }, "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, "tippecanoe:retain_points_multiplier_sequence": 100 }, "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, "tippecanoe:retain_points_multiplier_sequence": 522 }, "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, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.774785 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 620 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 328 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1316 }, "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, "tippecanoe:retain_points_multiplier_sequence": 329 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767458 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 110 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 330 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 835 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 845 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 117 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 128 }, "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, "tippecanoe:retain_points_multiplier_sequence": 322 }, "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, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.770443 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769901 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 142 }, "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, "tippecanoe:retain_points_multiplier_sequence": 141 }, "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, "tippecanoe:retain_points_multiplier_sequence": 323 }, "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, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 133 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 324 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 137 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "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, "tippecanoe:retain_points_multiplier_sequence": 806 }, "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, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767729 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 808 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 809 }, "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, "tippecanoe:retain_points_multiplier_sequence": 119 }, "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, "tippecanoe:retain_points_multiplier_sequence": 123 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 120 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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, "tippecanoe:retain_points_multiplier_sequence": 470 }, "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, "tippecanoe:retain_points_multiplier_sequence": 252 }, "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, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 118 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 116 }, "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, "tippecanoe:retain_points_multiplier_sequence": 245 }, "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, "tippecanoe:retain_points_multiplier_sequence": 246 }, "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, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.762844 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 255 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 524 }, "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, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759044 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.759044 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 526 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 527 }, "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, "tippecanoe:retain_points_multiplier_sequence": 972 }, "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, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787267 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.787267 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 973 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 975 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "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": 4, "tippecanoe:retain_points_multiplier_sequence": 974 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 844 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 549 }, "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, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 839 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 805 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 804 }, "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, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 803 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 841 }, "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, "tippecanoe:retain_points_multiplier_sequence": 834 }, "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, "tippecanoe:retain_points_multiplier_sequence": 802 }, "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, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.786453 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1330 }, "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, "tippecanoe:retain_points_multiplier_sequence": 521 }, "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, "tippecanoe:retain_points_multiplier_sequence": 520 }, "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, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 616 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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, "tippecanoe:retain_points_multiplier_sequence": 618 }, "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, "tippecanoe:retain_points_multiplier_sequence": 617 }, "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, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 90 }, "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, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771800 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.787810 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1472 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "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, "tippecanoe:retain_points_multiplier_sequence": 621 }, "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, "tippecanoe:retain_points_multiplier_sequence": 487 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "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, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 694 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "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, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 965 }, "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, "tippecanoe:retain_points_multiplier_sequence": 966 }, "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, "tippecanoe:retain_points_multiplier_sequence": 967 }, "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, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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, "tippecanoe:retain_points_multiplier_sequence": 472 }, "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, "tippecanoe:retain_points_multiplier_sequence": 471 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.768815 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 131 }, "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, "tippecanoe:retain_points_multiplier_sequence": 442 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 690 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.763116 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 247 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 969 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 968 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 167 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 444 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759587 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756873 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 165 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.754973 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 443 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 370 }, "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, "tippecanoe:retain_points_multiplier_sequence": 143 }, "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, "tippecanoe:retain_points_multiplier_sequence": 144 }, "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, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762844 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 140 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.762844 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 371 }, "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, "tippecanoe:retain_points_multiplier_sequence": 158 }, "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, "tippecanoe:retain_points_multiplier_sequence": 157 }, "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, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 798 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1402 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "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, "tippecanoe:retain_points_multiplier_sequence": 440 }, "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, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.757144 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.756873 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 800 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 156 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 59 }, "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, "tippecanoe:retain_points_multiplier_sequence": 60 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1370 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 862 }, "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, "tippecanoe:retain_points_multiplier_sequence": 863 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 864 }, "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, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 326 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 327 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "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, "tippecanoe:retain_points_multiplier_sequence": 194 }, "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, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 316 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "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, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 317 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 319 }, "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, "tippecanoe:retain_points_multiplier_sequence": 315 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 821 }, "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, "tippecanoe:retain_points_multiplier_sequence": 820 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "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, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 384 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 186 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 187 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748729 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 827 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.746015 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 816 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 171 }, "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, "tippecanoe:retain_points_multiplier_sequence": 528 }, "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, "tippecanoe:retain_points_multiplier_sequence": 310 }, "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, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 309 }, "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, "tippecanoe:retain_points_multiplier_sequence": 810 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 378 }, "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, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 375 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 380 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 381 }, "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, "tippecanoe:retain_points_multiplier_sequence": 382 }, "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, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 530 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 876 }, "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, "tippecanoe:retain_points_multiplier_sequence": 376 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1329 }, "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, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 320 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 830 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730810 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 829 }, "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, "tippecanoe:retain_points_multiplier_sequence": 828 }, "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, "tippecanoe:retain_points_multiplier_sequence": 395 }, "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, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 394 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 918 }, "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, "tippecanoe:retain_points_multiplier_sequence": 919 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 923 }, "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, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 256 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 922 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 259 }, "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, "tippecanoe:retain_points_multiplier_sequence": 979 }, "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, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 925 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "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, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 392 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "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, "tippecanoe:retain_points_multiplier_sequence": 221 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 398 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 397 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 507 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 506 }, "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, "tippecanoe:retain_points_multiplier_sequence": 730 }, "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, "tippecanoe:retain_points_multiplier_sequence": 731 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 168 }, "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, "tippecanoe:retain_points_multiplier_sequence": 248 }, "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, "tippecanoe:retain_points_multiplier_sequence": 615 }, "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, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 250 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 185 }, "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, "tippecanoe:retain_points_multiplier_sequence": 971 }, "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, "tippecanoe:retain_points_multiplier_sequence": 970 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 308 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "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, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 383 }, "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, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.739499 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 377 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 878 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 877 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.743843 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 183 }, "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, "tippecanoe:retain_points_multiplier_sequence": 184 }, "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, "tippecanoe:retain_points_multiplier_sequence": 373 }, "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, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.751444 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 188 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 502 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "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, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 930 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 931 }, "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, "tippecanoe:retain_points_multiplier_sequence": 911 }, "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, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 499 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "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, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 679 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "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, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737327 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 262 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "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, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 928 }, "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, "tippecanoe:retain_points_multiplier_sequence": 929 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.730267 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.730267 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 932 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "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, "tippecanoe:retain_points_multiplier_sequence": 237 }, "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, "tippecanoe:retain_points_multiplier_sequence": 236 }, "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, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 728 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 916 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 913 }, "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, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 915 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "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, "tippecanoe:retain_points_multiplier_sequence": 74 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1382 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 910 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1376 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "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, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "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, "tippecanoe:retain_points_multiplier_sequence": 914 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 552 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1456 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 517 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.750358 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 65 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 792 }, "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, "tippecanoe:retain_points_multiplier_sequence": 794 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 793 }, "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, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 640 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 641 }, "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, "tippecanoe:retain_points_multiplier_sequence": 505 }, "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, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 691 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 909 }, "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, "tippecanoe:retain_points_multiplier_sequence": 692 }, "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, "tippecanoe:retain_points_multiplier_sequence": 693 }, "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, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 783 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "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, "tippecanoe:retain_points_multiplier_sequence": 656 }, "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, "tippecanoe:retain_points_multiplier_sequence": 908 }, "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, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 789 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 638 }, "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, "tippecanoe:retain_points_multiplier_sequence": 639 }, "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, "tippecanoe:retain_points_multiplier_sequence": 790 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 655 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 657 }, "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, "tippecanoe:retain_points_multiplier_sequence": 654 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 653 }, "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, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 570 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 833 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 598 }, "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, "tippecanoe:retain_points_multiplier_sequence": 573 }, "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, "tippecanoe:retain_points_multiplier_sequence": 574 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 677 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 572 }, "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, "tippecanoe:retain_points_multiplier_sequence": 571 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 356 }, "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, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 147 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 665 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 668 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "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, "tippecanoe:retain_points_multiplier_sequence": 153 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1416 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "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, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 243 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 220 }, "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, "tippecanoe:retain_points_multiplier_sequence": 944 }, "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, "tippecanoe:retain_points_multiplier_sequence": 943 }, "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, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 949 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 948 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 947 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710443 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 819 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 815 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 825 }, "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, "tippecanoe:retain_points_multiplier_sequence": 811 }, "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, "tippecanoe:retain_points_multiplier_sequence": 823 }, "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, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 817 }, "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, "tippecanoe:retain_points_multiplier_sequence": 818 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 591 }, "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, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1433 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 779 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 594 }, "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, "tippecanoe:retain_points_multiplier_sequence": 777 }, "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, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 778 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 980 }, "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, "tippecanoe:retain_points_multiplier_sequence": 593 }, "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, "tippecanoe:retain_points_multiplier_sequence": 847 }, "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, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 832 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "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, "tippecanoe:retain_points_multiplier_sequence": 314 }, "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, "tippecanoe:retain_points_multiplier_sequence": 556 }, "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, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 557 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 560 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 609 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 596 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "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, "tippecanoe:retain_points_multiplier_sequence": 595 }, "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, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 562 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "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, "tippecanoe:retain_points_multiplier_sequence": 473 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 261 }, "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, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 265 }, "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, "tippecanoe:retain_points_multiplier_sequence": 267 }, "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, "tippecanoe:retain_points_multiplier_sequence": 264 }, "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, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "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, "tippecanoe:retain_points_multiplier_sequence": 504 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "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, "tippecanoe:retain_points_multiplier_sequence": 503 }, "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, "tippecanoe:retain_points_multiplier_sequence": 939 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 218 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 859 }, "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, "tippecanoe:retain_points_multiplier_sequence": 860 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 861 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "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, "tippecanoe:retain_points_multiplier_sequence": 858 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767187 ] } } , -{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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_sequence": 0 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.827413 ] } } , -{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": 4, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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, "tippecanoe:retain_points_multiplier_sequence": 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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "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, "tippecanoe:retain_points_multiplier_sequence": 477 }, "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_sequence": 478 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "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, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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, "tippecanoe:retain_points_multiplier_sequence": 172 }, "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_sequence": 659 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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, "tippecanoe:retain_points_multiplier_sequence": 530 }, "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_sequence": 529 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 593 }, "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, "tippecanoe:retain_points_multiplier_sequence": 37 }, "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, "tippecanoe:retain_points_multiplier_sequence": 173 }, "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, "tippecanoe:retain_points_multiplier_sequence": 598 }, "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_sequence": 167 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "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, "tippecanoe:retain_points_multiplier_sequence": 532 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 168 }, "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, "tippecanoe:retain_points_multiplier_sequence": 660 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 658 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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, "tippecanoe:retain_points_multiplier_sequence": 52 }, "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, "tippecanoe:retain_points_multiplier_sequence": 648 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "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_sequence": 38 }, "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, "tippecanoe:retain_points_multiplier_sequence": 527 }, "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, "tippecanoe:retain_points_multiplier_sequence": 528 }, "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_sequence": 39 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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, "tippecanoe:retain_points_multiplier_sequence": 137 }, "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, "tippecanoe:retain_points_multiplier_sequence": 649 }, "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_sequence": 136 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "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, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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, "tippecanoe:retain_points_multiplier_sequence": 142 }, "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_sequence": 569 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "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, "tippecanoe:retain_points_multiplier_sequence": 311 }, "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, "tippecanoe:retain_points_multiplier_sequence": 630 }, "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, "tippecanoe:retain_points_multiplier_sequence": 36 }, "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_sequence": 631 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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, "tippecanoe:retain_points_multiplier_sequence": 594 }, "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_sequence": 595 }, "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_sequence": 562 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 563 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 30 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 215 }, "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, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 635 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "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, "tippecanoe:retain_points_multiplier_sequence": 65 }, "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, "tippecanoe:retain_points_multiplier_sequence": 107 }, "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, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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_sequence": 317 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 568 }, "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, "tippecanoe:retain_points_multiplier_sequence": 334 }, "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, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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, "tippecanoe:retain_points_multiplier_sequence": 605 }, "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_sequence": 109 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "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, "tippecanoe:retain_points_multiplier_sequence": 590 }, "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, "tippecanoe:retain_points_multiplier_sequence": 110 }, "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_sequence": 570 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "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, "tippecanoe:retain_points_multiplier_sequence": 319 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 322 }, "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, "tippecanoe:retain_points_multiplier_sequence": 567 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 318 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 200 }, "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, "tippecanoe:retain_points_multiplier_sequence": 589 }, "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, "tippecanoe:retain_points_multiplier_sequence": 197 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "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_sequence": 383 }, "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, "tippecanoe:retain_points_multiplier_sequence": 324 }, "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_sequence": 310 }, "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_sequence": 607 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "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, "tippecanoe:retain_points_multiplier_sequence": 588 }, "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, "tippecanoe:retain_points_multiplier_sequence": 202 }, "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, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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_sequence": 587 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "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, "tippecanoe:retain_points_multiplier_sequence": 375 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 373 }, "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, "tippecanoe:retain_points_multiplier_sequence": 203 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 601 }, "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, "tippecanoe:retain_points_multiplier_sequence": 201 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "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, "tippecanoe:retain_points_multiplier_sequence": 362 }, "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, "tippecanoe:retain_points_multiplier_sequence": 238 }, "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_sequence": 239 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "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, "tippecanoe:retain_points_multiplier_sequence": 365 }, "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, "tippecanoe:retain_points_multiplier_sequence": 366 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 360 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 320 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 364 }, "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, "tippecanoe:retain_points_multiplier_sequence": 329 }, "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, "tippecanoe:retain_points_multiplier_sequence": 549 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 316 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "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, "tippecanoe:retain_points_multiplier_sequence": 261 }, "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, "tippecanoe:retain_points_multiplier_sequence": 217 }, "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, "tippecanoe:retain_points_multiplier_sequence": 218 }, "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_sequence": 262 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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, "tippecanoe:retain_points_multiplier_sequence": 177 }, "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, "tippecanoe:retain_points_multiplier_sequence": 321 }, "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_sequence": 242 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "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, "tippecanoe:retain_points_multiplier_sequence": 657 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 313 }, "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, "tippecanoe:retain_points_multiplier_sequence": 331 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 417 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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, "tippecanoe:retain_points_multiplier_sequence": 153 }, "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, "tippecanoe:retain_points_multiplier_sequence": 188 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 578 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "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, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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, "tippecanoe:retain_points_multiplier_sequence": 409 }, "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_sequence": 643 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "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, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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, "tippecanoe:retain_points_multiplier_sequence": 189 }, "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, "tippecanoe:retain_points_multiplier_sequence": 411 }, "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_sequence": 572 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "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, "tippecanoe:retain_points_multiplier_sequence": 414 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 150 }, "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, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 416 }, "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, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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_sequence": 581 }, "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, "tippecanoe:retain_points_multiplier_sequence": 194 }, "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, "tippecanoe:retain_points_multiplier_sequence": 193 }, "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, "tippecanoe:retain_points_multiplier_sequence": 438 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "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, "tippecanoe:retain_points_multiplier_sequence": 639 }, "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, "tippecanoe:retain_points_multiplier_sequence": 330 }, "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, "tippecanoe:retain_points_multiplier_sequence": 419 }, "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_sequence": 418 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "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, "tippecanoe:retain_points_multiplier_sequence": 332 }, "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, "tippecanoe:retain_points_multiplier_sequence": 174 }, "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, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 591 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 157 }, "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, "tippecanoe:retain_points_multiplier_sequence": 158 }, "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, "tippecanoe:retain_points_multiplier_sequence": 556 }, "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, "tippecanoe:retain_points_multiplier_sequence": 424 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 423 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "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, "tippecanoe:retain_points_multiplier_sequence": 326 }, "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, "tippecanoe:retain_points_multiplier_sequence": 327 }, "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, "tippecanoe:retain_points_multiplier_sequence": 636 }, "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_sequence": 314 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "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, "tippecanoe:retain_points_multiplier_sequence": 564 }, "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, "tippecanoe:retain_points_multiplier_sequence": 292 }, "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, "tippecanoe:retain_points_multiplier_sequence": 285 }, "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_sequence": 284 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "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, "tippecanoe:retain_points_multiplier_sequence": 641 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 351 }, "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, "tippecanoe:retain_points_multiplier_sequence": 352 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 290 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 279 }, "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, "tippecanoe:retain_points_multiplier_sequence": 325 }, "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, "tippecanoe:retain_points_multiplier_sequence": 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": 2, "tippecanoe:retain_points_multiplier_sequence": 293 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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, "tippecanoe:retain_points_multiplier_sequence": 295 }, "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, "tippecanoe:retain_points_multiplier_sequence": 294 }, "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_sequence": 358 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "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, "tippecanoe:retain_points_multiplier_sequence": 350 }, "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, "tippecanoe:retain_points_multiplier_sequence": 349 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 273 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 471 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "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, "tippecanoe:retain_points_multiplier_sequence": 473 }, "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_sequence": 472 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "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, "tippecanoe:retain_points_multiplier_sequence": 628 }, "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, "tippecanoe:retain_points_multiplier_sequence": 629 }, "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, "tippecanoe:retain_points_multiplier_sequence": 467 }, "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_sequence": 465 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "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, "tippecanoe:retain_points_multiplier_sequence": 469 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 468 }, "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, "tippecanoe:retain_points_multiplier_sequence": 592 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 114 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "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, "tippecanoe:retain_points_multiplier_sequence": 356 }, "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, "tippecanoe:retain_points_multiplier_sequence": 355 }, "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, "tippecanoe:retain_points_multiplier_sequence": 267 }, "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_sequence": 78 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "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, "tippecanoe:retain_points_multiplier_sequence": 346 }, "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, "tippecanoe:retain_points_multiplier_sequence": 354 }, "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, "tippecanoe:retain_points_multiplier_sequence": 74 }, "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_sequence": 73 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "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, "tippecanoe:retain_points_multiplier_sequence": 305 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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, "tippecanoe:retain_points_multiplier_sequence": 306 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 76 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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, "tippecanoe:retain_points_multiplier_sequence": 389 }, "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, "tippecanoe:retain_points_multiplier_sequence": 392 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 359 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "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, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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, "tippecanoe:retain_points_multiplier_sequence": 60 }, "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, "tippecanoe:retain_points_multiplier_sequence": 126 }, "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_sequence": 124 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "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, "tippecanoe:retain_points_multiplier_sequence": 600 }, "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, "tippecanoe:retain_points_multiplier_sequence": 388 }, "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, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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_sequence": 4 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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, "tippecanoe:retain_points_multiplier_sequence": 463 }, "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, "tippecanoe:retain_points_multiplier_sequence": 464 }, "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_sequence": 474 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "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, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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_sequence": 501 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "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, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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, "tippecanoe:retain_points_multiplier_sequence": 120 }, "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, "tippecanoe:retain_points_multiplier_sequence": 121 }, "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_sequence": 118 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "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_sequence": 252 }, "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, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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, "tippecanoe:retain_points_multiplier_sequence": 499 }, "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_sequence": 500 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "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, "tippecanoe:retain_points_multiplier_sequence": 498 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 503 }, "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, "tippecanoe:retain_points_multiplier_sequence": 504 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 535 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "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, "tippecanoe:retain_points_multiplier_sequence": 540 }, "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, "tippecanoe:retain_points_multiplier_sequence": 536 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 258 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 259 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 662 }, "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, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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, "tippecanoe:retain_points_multiplier_sequence": 444 }, "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, "tippecanoe:retain_points_multiplier_sequence": 445 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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, "tippecanoe:retain_points_multiplier_sequence": 369 }, "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, "tippecanoe:retain_points_multiplier_sequence": 370 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 368 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 367 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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, "tippecanoe:retain_points_multiplier_sequence": 211 }, "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_sequence": 533 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "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, "tippecanoe:retain_points_multiplier_sequence": 539 }, "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, "tippecanoe:retain_points_multiplier_sequence": 538 }, "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, "tippecanoe:retain_points_multiplier_sequence": 212 }, "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_sequence": 210 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "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, "tippecanoe:retain_points_multiplier_sequence": 64 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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, "tippecanoe:retain_points_multiplier_sequence": 247 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 246 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 257 }, "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, "tippecanoe:retain_points_multiplier_sequence": 256 }, "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, "tippecanoe:retain_points_multiplier_sequence": 454 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 453 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "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, "tippecanoe:retain_points_multiplier_sequence": 645 }, "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, "tippecanoe:retain_points_multiplier_sequence": 338 }, "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, "tippecanoe:retain_points_multiplier_sequence": 344 }, "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_sequence": 340 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "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, "tippecanoe:retain_points_multiplier_sequence": 245 }, "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, "tippecanoe:retain_points_multiplier_sequence": 248 }, "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, "tippecanoe:retain_points_multiplier_sequence": 447 }, "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_sequence": 255 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "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, "tippecanoe:retain_points_multiplier_sequence": 446 }, "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, "tippecanoe:retain_points_multiplier_sequence": 644 }, "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, "tippecanoe:retain_points_multiplier_sequence": 449 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 450 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "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, "tippecanoe:retain_points_multiplier_sequence": 619 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 618 }, "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, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 507 }, "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, "tippecanoe:retain_points_multiplier_sequence": 341 }, "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, "tippecanoe:retain_points_multiplier_sequence": 626 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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, "tippecanoe:retain_points_multiplier_sequence": 20 }, "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, "tippecanoe:retain_points_multiplier_sequence": 604 }, "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_sequence": 342 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "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, "tippecanoe:retain_points_multiplier_sequence": 339 }, "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, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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_sequence": 621 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 617 }, "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, "tippecanoe:retain_points_multiplier_sequence": 620 }, "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, "tippecanoe:retain_points_multiplier_sequence": 625 }, "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, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 582 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 139 }, "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, "tippecanoe:retain_points_multiplier_sequence": 647 }, "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, "tippecanoe:retain_points_multiplier_sequence": 627 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 130 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "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, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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, "tippecanoe:retain_points_multiplier_sequence": 141 }, "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, "tippecanoe:retain_points_multiplier_sequence": 128 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 208 }, "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": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "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, "tippecanoe:retain_points_multiplier_sequence": 219 }, "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, "tippecanoe:retain_points_multiplier_sequence": 337 }, "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, "tippecanoe:retain_points_multiplier_sequence": 309 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 336 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "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, "tippecanoe:retain_points_multiplier_sequence": 113 }, "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, "tippecanoe:retain_points_multiplier_sequence": 223 }, "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_sequence": 112 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 483 }, "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, "tippecanoe:retain_points_multiplier_sequence": 399 }, "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, "tippecanoe:retain_points_multiplier_sequence": 398 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 304 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "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, "tippecanoe:retain_points_multiplier_sequence": 227 }, "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, "tippecanoe:retain_points_multiplier_sequence": 224 }, "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, "tippecanoe:retain_points_multiplier_sequence": 225 }, "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_sequence": 169 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "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, "tippecanoe:retain_points_multiplier_sequence": 166 }, "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, "tippecanoe:retain_points_multiplier_sequence": 164 }, "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, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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_sequence": 51 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "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, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 171 }, "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, "tippecanoe:retain_points_multiplier_sequence": 650 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 236 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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, "tippecanoe:retain_points_multiplier_sequence": 565 }, "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, "tippecanoe:retain_points_multiplier_sequence": 597 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 143 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "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, "tippecanoe:retain_points_multiplier_sequence": 162 }, "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, "tippecanoe:retain_points_multiplier_sequence": 101 }, "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, "tippecanoe:retain_points_multiplier_sequence": 100 }, "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_sequence": 31 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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, "tippecanoe:retain_points_multiplier_sequence": 102 }, "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, "tippecanoe:retain_points_multiplier_sequence": 133 }, "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_sequence": 132 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "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, "tippecanoe:retain_points_multiplier_sequence": 651 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 98 }, "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, "tippecanoe:retain_points_multiplier_sequence": 230 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 541 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 396 }, "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, "tippecanoe:retain_points_multiplier_sequence": 655 }, "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, "tippecanoe:retain_points_multiplier_sequence": 653 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 656 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "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, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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, "tippecanoe:retain_points_multiplier_sequence": 652 }, "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, "tippecanoe:retain_points_multiplier_sequence": 231 }, "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_sequence": 232 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "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, "tippecanoe:retain_points_multiplier_sequence": 580 }, "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, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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, "tippecanoe:retain_points_multiplier_sequence": 576 }, "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_sequence": 33 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "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, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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, "tippecanoe:retain_points_multiplier_sequence": 47 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 661 }, "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, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 48 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 634 }, "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, "tippecanoe:retain_points_multiplier_sequence": 394 }, "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, "tippecanoe:retain_points_multiplier_sequence": 395 }, "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, "tippecanoe:retain_points_multiplier_sequence": 335 }, "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_sequence": 70 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "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, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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, "tippecanoe:retain_points_multiplier_sequence": 425 }, "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_sequence": 426 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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, "tippecanoe:retain_points_multiplier_sequence": 377 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 376 }, "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, "tippecanoe:retain_points_multiplier_sequence": 387 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 386 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 381 }, "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, "tippecanoe:retain_points_multiplier_sequence": 378 }, "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, "tippecanoe:retain_points_multiplier_sequence": 379 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "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_sequence": 72 }, "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, "tippecanoe:retain_points_multiplier_sequence": 371 }, "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, "tippecanoe:retain_points_multiplier_sequence": 421 }, "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_sequence": 71 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "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_sequence": 428 }, "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, "tippecanoe:retain_points_multiplier_sequence": 384 }, "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, "tippecanoe:retain_points_multiplier_sequence": 422 }, "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_sequence": 461 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "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, "tippecanoe:retain_points_multiplier_sequence": 566 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 296 }, "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, "tippecanoe:retain_points_multiplier_sequence": 637 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 297 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 280 }, "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, "tippecanoe:retain_points_multiplier_sequence": 412 }, "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, "tippecanoe:retain_points_multiplier_sequence": 573 }, "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, "tippecanoe:retain_points_multiplier_sequence": 413 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "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_sequence": 404 }, "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, "tippecanoe:retain_points_multiplier_sequence": 405 }, "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, "tippecanoe:retain_points_multiplier_sequence": 407 }, "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_sequence": 571 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "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, "tippecanoe:retain_points_multiplier_sequence": 408 }, "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, "tippecanoe:retain_points_multiplier_sequence": 300 }, "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, "tippecanoe:retain_points_multiplier_sequence": 301 }, "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_sequence": 275 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "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, "tippecanoe:retain_points_multiplier_sequence": 277 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 288 }, "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, "tippecanoe:retain_points_multiplier_sequence": 287 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 640 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 276 }, "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, "tippecanoe:retain_points_multiplier_sequence": 286 }, "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, "tippecanoe:retain_points_multiplier_sequence": 291 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 45 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "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, "tippecanoe:retain_points_multiplier_sequence": 282 }, "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, "tippecanoe:retain_points_multiplier_sequence": 180 }, "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, "tippecanoe:retain_points_multiplier_sequence": 278 }, "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_sequence": 638 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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, "tippecanoe:retain_points_multiplier_sequence": 241 }, "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, "tippecanoe:retain_points_multiplier_sequence": 186 }, "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, "tippecanoe:retain_points_multiplier_sequence": 185 }, "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_sequence": 179 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "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, "tippecanoe:retain_points_multiplier_sequence": 265 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 266 }, "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, "tippecanoe:retain_points_multiplier_sequence": 274 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 268 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 183 }, "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, "tippecanoe:retain_points_multiplier_sequence": 264 }, "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, "tippecanoe:retain_points_multiplier_sequence": 272 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 269 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "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, "tippecanoe:retain_points_multiplier_sequence": 184 }, "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, "tippecanoe:retain_points_multiplier_sequence": 391 }, "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, "tippecanoe:retain_points_multiplier_sequence": 302 }, "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_sequence": 103 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "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, "tippecanoe:retain_points_multiplier_sequence": 182 }, "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, "tippecanoe:retain_points_multiplier_sequence": 308 }, "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, "tippecanoe:retain_points_multiplier_sequence": 181 }, "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_sequence": 303 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "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, "tippecanoe:retain_points_multiplier_sequence": 480 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 482 }, "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, "tippecanoe:retain_points_multiplier_sequence": 481 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 104 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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, "tippecanoe:retain_points_multiplier_sequence": 307 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 400 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "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, "tippecanoe:retain_points_multiplier_sequence": 96 }, "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, "tippecanoe:retain_points_multiplier_sequence": 145 }, "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, "tippecanoe:retain_points_multiplier_sequence": 144 }, "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_sequence": 146 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "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, "tippecanoe:retain_points_multiplier_sequence": 599 }, "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, "tippecanoe:retain_points_multiplier_sequence": 348 }, "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, "tippecanoe:retain_points_multiplier_sequence": 347 }, "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_sequence": 148 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "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, "tippecanoe:retain_points_multiplier_sequence": 488 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 489 }, "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, "tippecanoe:retain_points_multiplier_sequence": 486 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 487 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 603 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 160 }, "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, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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, "tippecanoe:retain_points_multiplier_sequence": 175 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 485 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "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, "tippecanoe:retain_points_multiplier_sequence": 431 }, "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, "tippecanoe:retain_points_multiplier_sequence": 432 }, "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, "tippecanoe:retain_points_multiplier_sequence": 430 }, "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_sequence": 433 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "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, "tippecanoe:retain_points_multiplier_sequence": 491 }, "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, "tippecanoe:retain_points_multiplier_sequence": 512 }, "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, "tippecanoe:retain_points_multiplier_sequence": 548 }, "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_sequence": 207 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "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, "tippecanoe:retain_points_multiplier_sequence": 205 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 492 }, "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, "tippecanoe:retain_points_multiplier_sequence": 250 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 251 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 516 }, "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, "tippecanoe:retain_points_multiplier_sequence": 612 }, "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, "tippecanoe:retain_points_multiplier_sequence": 515 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 509 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "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, "tippecanoe:retain_points_multiplier_sequence": 518 }, "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, "tippecanoe:retain_points_multiplier_sequence": 517 }, "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, "tippecanoe:retain_points_multiplier_sequence": 493 }, "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_sequence": 494 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "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, "tippecanoe:retain_points_multiplier_sequence": 459 }, "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, "tippecanoe:retain_points_multiplier_sequence": 436 }, "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, "tippecanoe:retain_points_multiplier_sequence": 191 }, "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_sequence": 435 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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, "tippecanoe:retain_points_multiplier_sequence": 434 }, "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, "tippecanoe:retain_points_multiplier_sequence": 190 }, "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, "tippecanoe:retain_points_multiplier_sequence": 155 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 156 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 457 }, "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, "tippecanoe:retain_points_multiplier_sequence": 456 }, "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, "tippecanoe:retain_points_multiplier_sequence": 633 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 455 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "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, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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, "tippecanoe:retain_points_multiplier_sequence": 557 }, "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, "tippecanoe:retain_points_multiplier_sequence": 558 }, "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_sequence": 575 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "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, "tippecanoe:retain_points_multiplier_sequence": 560 }, "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, "tippecanoe:retain_points_multiplier_sequence": 519 }, "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, "tippecanoe:retain_points_multiplier_sequence": 550 }, "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_sequence": 551 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "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, "tippecanoe:retain_points_multiplier_sequence": 610 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 552 }, "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, "tippecanoe:retain_points_multiplier_sequence": 401 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 511 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 553 }, "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, "tippecanoe:retain_points_multiplier_sequence": 554 }, "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, "tippecanoe:retain_points_multiplier_sequence": 514 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 513 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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, "tippecanoe:retain_points_multiplier_sequence": 397 }, "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, "tippecanoe:retain_points_multiplier_sequence": 608 }, "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, "tippecanoe:retain_points_multiplier_sequence": 510 }, "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_sequence": 520 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "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, "tippecanoe:retain_points_multiplier_sequence": 525 }, "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, "tippecanoe:retain_points_multiplier_sequence": 523 }, "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, "tippecanoe:retain_points_multiplier_sequence": 524 }, "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_sequence": 451 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "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, "tippecanoe:retain_points_multiplier_sequence": 521 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 559 }, "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, "tippecanoe:retain_points_multiplier_sequence": 439 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 440 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 448 }, "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, "tippecanoe:retain_points_multiplier_sequence": 441 }, "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, "tippecanoe:retain_points_multiplier_sequence": 586 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 443 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "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, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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, "tippecanoe:retain_points_multiplier_sequence": 584 }, "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, "tippecanoe:retain_points_multiplier_sequence": 442 }, "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_sequence": 624 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "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_sequence": 622 }, "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, "tippecanoe:retain_points_multiplier_sequence": 613 }, "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, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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_sequence": 609 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 84 }, "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, "tippecanoe:retain_points_multiplier_sequence": 87 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 547 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 490 }, "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, "tippecanoe:retain_points_multiplier_sequence": 496 }, "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, "tippecanoe:retain_points_multiplier_sequence": 495 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 623 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "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, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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, "tippecanoe:retain_points_multiplier_sequence": 583 }, "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, "tippecanoe:retain_points_multiplier_sequence": 602 }, "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_sequence": 545 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "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, "tippecanoe:retain_points_multiplier_sequence": 543 }, "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, "tippecanoe:retain_points_multiplier_sequence": 542 }, "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, "tippecanoe:retain_points_multiplier_sequence": 117 }, "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_sequence": 642 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "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, "tippecanoe:retain_points_multiplier_sequence": 221 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 140 }, "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, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "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, "tippecanoe:retain_points_multiplier_sequence": 116 }, "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, "tippecanoe:retain_points_multiplier_sequence": 372 }, "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, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2152 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 674 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3332 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3569 }, "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_sequence": 673 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3568 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 677 }, "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, "tippecanoe:retain_points_multiplier_sequence": 676 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 675 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1973 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1974 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3544 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1975 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3545 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 924 }, "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, "tippecanoe:retain_points_multiplier_sequence": 922 }, "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, "tippecanoe:retain_points_multiplier_sequence": 923 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "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_sequence": 1903 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1904 }, "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, "tippecanoe:retain_points_multiplier_sequence": 601 }, "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, "tippecanoe:retain_points_multiplier_sequence": 600 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1783 }, "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_sequence": 70 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3242 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1790 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1784 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1902 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1878 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "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_sequence": 2155 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2156 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2083 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "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_sequence": 1883 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1881 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 546 }, "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, "tippecanoe:retain_points_multiplier_sequence": 547 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3437 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1593 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3434 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3620 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1785 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3435 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3438 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3436 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2082 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1592 }, "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_sequence": 1788 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3439 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3619 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3195 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2453 }, "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_sequence": 1005 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2451 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3621 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2455 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2454 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1812 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3270 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 113 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "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, "tippecanoe:retain_points_multiplier_sequence": 125 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3532 }, "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, "tippecanoe:retain_points_multiplier_sequence": 114 }, "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_sequence": 112 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1938 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3512 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "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_sequence": 2510 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2511 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1842 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 71 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1133 }, "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, "tippecanoe:retain_points_multiplier_sequence": 770 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3196 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2967 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2966 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "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_sequence": 1705 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2618 }, "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_sequence": 1694 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1695 }, "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, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 779 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 778 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1804 }, "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, "tippecanoe:retain_points_multiplier_sequence": 776 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3324 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3573 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "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_sequence": 3540 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "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, "tippecanoe:retain_points_multiplier_sequence": 667 }, "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, "tippecanoe:retain_points_multiplier_sequence": 666 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3403 }, "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_sequence": 126 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "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, "tippecanoe:retain_points_multiplier_sequence": 769 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 768 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1793 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3667 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3364 }, "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_sequence": 2975 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2968 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3215 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2972 }, "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_sequence": 2973 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 710 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1707 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2757 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2762 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2761 }, "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, "tippecanoe:retain_points_multiplier_sequence": 120 }, "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_sequence": 121 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "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_sequence": 1713 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3503 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1709 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1708 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2763 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2758 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "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, "tippecanoe:retain_points_multiplier_sequence": 742 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3119 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2602 }, "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, "tippecanoe:retain_points_multiplier_sequence": 713 }, "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, "tippecanoe:retain_points_multiplier_sequence": 714 }, "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_sequence": 2623 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2622 }, "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, "tippecanoe:retain_points_multiplier_sequence": 528 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2473 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2472 }, "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_sequence": 2456 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "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, "tippecanoe:retain_points_multiplier_sequence": 529 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 109 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 761 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3313 }, "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, "tippecanoe:retain_points_multiplier_sequence": 996 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 997 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3460 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1986 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2471 }, "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_sequence": 2459 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "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, "tippecanoe:retain_points_multiplier_sequence": 503 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1474 }, "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_sequence": 1473 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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, "tippecanoe:retain_points_multiplier_sequence": 759 }, "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, "tippecanoe:retain_points_multiplier_sequence": 758 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 504 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3582 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3574 }, "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, "tippecanoe:retain_points_multiplier_sequence": 990 }, "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_sequence": 1037 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "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, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3581 }, "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_sequence": 988 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "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, "tippecanoe:retain_points_multiplier_sequence": 987 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1753 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1752 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 511 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1750 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3538 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3537 }, "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_sequence": 505 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1747 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3258 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3257 }, "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_sequence": 506 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "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, "tippecanoe:retain_points_multiplier_sequence": 508 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 509 }, "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, "tippecanoe:retain_points_multiplier_sequence": 510 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 512 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3244 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3259 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1746 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3260 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1781 }, "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, "tippecanoe:retain_points_multiplier_sequence": 866 }, "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, "tippecanoe:retain_points_multiplier_sequence": 483 }, "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_sequence": 482 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "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, "tippecanoe:retain_points_multiplier_sequence": 865 }, "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, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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, "tippecanoe:retain_points_multiplier_sequence": 864 }, "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_sequence": 491 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "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, "tippecanoe:retain_points_multiplier_sequence": 490 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 493 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 492 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 494 }, "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, "tippecanoe:retain_points_multiplier_sequence": 486 }, "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, "tippecanoe:retain_points_multiplier_sequence": 699 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 863 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3663 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "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_sequence": 700 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "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, "tippecanoe:retain_points_multiplier_sequence": 862 }, "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, "tippecanoe:retain_points_multiplier_sequence": 860 }, "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, "tippecanoe:retain_points_multiplier_sequence": 859 }, "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_sequence": 1027 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "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, "tippecanoe:retain_points_multiplier_sequence": 103 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 102 }, "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, "tippecanoe:retain_points_multiplier_sequence": 487 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 548 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 100 }, "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, "tippecanoe:retain_points_multiplier_sequence": 489 }, "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, "tippecanoe:retain_points_multiplier_sequence": 488 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 986 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3664 }, "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, "tippecanoe:retain_points_multiplier_sequence": 481 }, "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, "tippecanoe:retain_points_multiplier_sequence": 99 }, "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_sequence": 98 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "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, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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_sequence": 3336 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3580 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3579 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 448 }, "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, "tippecanoe:retain_points_multiplier_sequence": 698 }, "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, "tippecanoe:retain_points_multiplier_sequence": 449 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 439 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 697 }, "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, "tippecanoe:retain_points_multiplier_sequence": 857 }, "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, "tippecanoe:retain_points_multiplier_sequence": 442 }, "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, "tippecanoe:retain_points_multiplier_sequence": 443 }, "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_sequence": 858 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "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, "tippecanoe:retain_points_multiplier_sequence": 447 }, "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_sequence": 856 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "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, "tippecanoe:retain_points_multiplier_sequence": 854 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 696 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 853 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "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, "tippecanoe:retain_points_multiplier_sequence": 852 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 851 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "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_sequence": 437 }, "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, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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, "tippecanoe:retain_points_multiplier_sequence": 438 }, "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_sequence": 93 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "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, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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, "tippecanoe:retain_points_multiplier_sequence": 440 }, "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, "tippecanoe:retain_points_multiplier_sequence": 441 }, "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_sequence": 1370 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3164 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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, "tippecanoe:retain_points_multiplier_sequence": 87 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3575 }, "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, "tippecanoe:retain_points_multiplier_sequence": 497 }, "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, "tippecanoe:retain_points_multiplier_sequence": 496 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2785 }, "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_sequence": 2786 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1837 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "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_sequence": 1833 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1832 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1756 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3241 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1755 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3239 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3240 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2791 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2792 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2189 }, "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_sequence": 2178 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2179 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3237 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1741 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1742 }, "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_sequence": 3238 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3235 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2177 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2176 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2175 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1831 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1828 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1829 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "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_sequence": 1825 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1826 }, "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, "tippecanoe:retain_points_multiplier_sequence": 392 }, "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_sequence": 1823 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "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, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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, "tippecanoe:retain_points_multiplier_sequence": 354 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3599 }, "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_sequence": 3 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3296 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 353 }, "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, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 344 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1739 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3236 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1737 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 404 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2174 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2173 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "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_sequence": 2170 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2171 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1736 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3261 }, "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, "tippecanoe:retain_points_multiplier_sequence": 393 }, "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_sequence": 394 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3234 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3536 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 348 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 349 }, "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, "tippecanoe:retain_points_multiplier_sequence": 350 }, "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, "tippecanoe:retain_points_multiplier_sequence": 352 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 351 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2169 }, "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, "tippecanoe:retain_points_multiplier_sequence": 397 }, "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, "tippecanoe:retain_points_multiplier_sequence": 355 }, "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, "tippecanoe:retain_points_multiplier_sequence": 356 }, "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_sequence": 358 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "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, "tippecanoe:retain_points_multiplier_sequence": 527 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "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_sequence": 2186 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2187 }, "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, "tippecanoe:retain_points_multiplier_sequence": 514 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 513 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 515 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 517 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2500 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2562 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2561 }, "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, "tippecanoe:retain_points_multiplier_sequence": 519 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "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_sequence": 2183 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2182 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2181 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2499 }, "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_sequence": 2498 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2497 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2496 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "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, "tippecanoe:retain_points_multiplier_sequence": 520 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 521 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2874 }, "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, "tippecanoe:retain_points_multiplier_sequence": 523 }, "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, "tippecanoe:retain_points_multiplier_sequence": 525 }, "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, "tippecanoe:retain_points_multiplier_sequence": 524 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3120 }, "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, "tippecanoe:retain_points_multiplier_sequence": 526 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2873 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2872 }, "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_sequence": 2871 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2870 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2868 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "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_sequence": 2726 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2727 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3314 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2725 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2723 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3535 }, "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, "tippecanoe:retain_points_multiplier_sequence": 545 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2711 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1589 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2794 }, "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_sequence": 3662 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2797 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2799 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "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_sequence": 498 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2802 }, "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, "tippecanoe:retain_points_multiplier_sequence": 500 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 499 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2560 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2801 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2803 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2804 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2493 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "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, "tippecanoe:retain_points_multiplier_sequence": 469 }, "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_sequence": 470 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2807 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2809 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2876 }, "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_sequence": 3263 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3250 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2811 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2813 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2814 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2865 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2863 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "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, "tippecanoe:retain_points_multiplier_sequence": 472 }, "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_sequence": 473 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3041 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2488 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2489 }, "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_sequence": 2487 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2484 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2482 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2483 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 362 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2480 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2481 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "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, "tippecanoe:retain_points_multiplier_sequence": 365 }, "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, "tippecanoe:retain_points_multiplier_sequence": 369 }, "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, "tippecanoe:retain_points_multiplier_sequence": 370 }, "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_sequence": 2862 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2861 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2860 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2859 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2858 }, "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_sequence": 467 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2856 }, "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, "tippecanoe:retain_points_multiplier_sequence": 371 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2854 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2721 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2733 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3644 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2806 }, "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_sequence": 2795 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2796 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2790 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2718 }, "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_sequence": 2728 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2729 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2731 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2734 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2735 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2716 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3138 }, "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_sequence": 3137 }, "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, "tippecanoe:retain_points_multiplier_sequence": 380 }, "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_sequence": 379 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3317 }, "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, "tippecanoe:retain_points_multiplier_sequence": 381 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3335 }, "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_sequence": 1439 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3139 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3140 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3640 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3639 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 549 }, "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, "tippecanoe:retain_points_multiplier_sequence": 552 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3623 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 671 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "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_sequence": 382 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3135 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3136 }, "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_sequence": 383 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3624 }, "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_sequence": 1337 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1715 }, "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, "tippecanoe:retain_points_multiplier_sequence": 982 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "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, "tippecanoe:retain_points_multiplier_sequence": 694 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 695 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2333 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2334 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3338 }, "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, "tippecanoe:retain_points_multiplier_sequence": 52 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 693 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 850 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3495 }, "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, "tippecanoe:retain_points_multiplier_sequence": 848 }, "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, "tippecanoe:retain_points_multiplier_sequence": 849 }, "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_sequence": 3477 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "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_sequence": 2337 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1376 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2336 }, "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_sequence": 1019 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "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, "tippecanoe:retain_points_multiplier_sequence": 691 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 692 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3184 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3277 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 689 }, "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, "tippecanoe:retain_points_multiplier_sequence": 690 }, "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, "tippecanoe:retain_points_multiplier_sequence": 846 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 847 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3188 }, "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, "tippecanoe:retain_points_multiplier_sequence": 845 }, "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, "tippecanoe:retain_points_multiplier_sequence": 208 }, "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, "tippecanoe:retain_points_multiplier_sequence": 843 }, "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_sequence": 1017 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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, "tippecanoe:retain_points_multiplier_sequence": 110 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "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_sequence": 3571 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "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, "tippecanoe:retain_points_multiplier_sequence": 84 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2335 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "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, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 81 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3493 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3492 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "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_sequence": 1362 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1359 }, "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, "tippecanoe:retain_points_multiplier_sequence": 218 }, "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, "tippecanoe:retain_points_multiplier_sequence": 217 }, "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_sequence": 1360 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "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, "tippecanoe:retain_points_multiplier_sequence": 203 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3367 }, "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, "tippecanoe:retain_points_multiplier_sequence": 687 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 686 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 202 }, "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, "tippecanoe:retain_points_multiplier_sequence": 844 }, "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, "tippecanoe:retain_points_multiplier_sequence": 841 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 842 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "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, "tippecanoe:retain_points_multiplier_sequence": 840 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "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_sequence": 2600 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "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, "tippecanoe:retain_points_multiplier_sequence": 701 }, "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, "tippecanoe:retain_points_multiplier_sequence": 555 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "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_sequence": 1172 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "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, "tippecanoe:retain_points_multiplier_sequence": 706 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 707 }, "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, "tippecanoe:retain_points_multiplier_sequence": 731 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3342 }, "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, "tippecanoe:retain_points_multiplier_sequence": 839 }, "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, "tippecanoe:retain_points_multiplier_sequence": 556 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3666 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 559 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "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, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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_sequence": 197 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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, "tippecanoe:retain_points_multiplier_sequence": 199 }, "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, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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_sequence": 80 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 757 }, "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_sequence": 200 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3349 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "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, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 560 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2956 }, "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, "tippecanoe:retain_points_multiplier_sequence": 992 }, "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, "tippecanoe:retain_points_multiplier_sequence": 558 }, "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, "tippecanoe:retain_points_multiplier_sequence": 993 }, "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_sequence": 1004 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2750 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "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_sequence": 2752 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2751 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2753 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1821 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1390 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1819 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3472 }, "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, "tippecanoe:retain_points_multiplier_sequence": 233 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "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, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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_sequence": 226 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "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, "tippecanoe:retain_points_multiplier_sequence": 228 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3526 }, "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_sequence": 3527 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1731 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1732 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3231 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3233 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 272 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3331 }, "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, "tippecanoe:retain_points_multiplier_sequence": 271 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1734 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "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, "tippecanoe:retain_points_multiplier_sequence": 273 }, "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, "tippecanoe:retain_points_multiplier_sequence": 275 }, "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, "tippecanoe:retain_points_multiplier_sequence": 274 }, "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_sequence": 2168 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "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, "tippecanoe:retain_points_multiplier_sequence": 263 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1733 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3232 }, "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_sequence": 1462 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1460 }, "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, "tippecanoe:retain_points_multiplier_sequence": 230 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3310 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "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, "tippecanoe:retain_points_multiplier_sequence": 232 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 235 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1814 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1815 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "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_sequence": 1675 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1729 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1727 }, "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_sequence": 1674 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1673 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1813 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2283 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3567 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1672 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1678 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1341 }, "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, "tippecanoe:retain_points_multiplier_sequence": 750 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 751 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2288 }, "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_sequence": 2289 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1456 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3377 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3104 }, "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_sequence": 3102 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "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_sequence": 206 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1777 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1776 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3101 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3103 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3100 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 838 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "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, "tippecanoe:retain_points_multiplier_sequence": 728 }, "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, "tippecanoe:retain_points_multiplier_sequence": 727 }, "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_sequence": 3099 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1382 }, "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_sequence": 1383 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 739 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2449 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2450 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2827 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2145 }, "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_sequence": 1375 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "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_sequence": 1379 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2445 }, "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_sequence": 1380 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "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_sequence": 2954 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2955 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2941 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 995 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3479 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3509 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1568 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1567 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1565 }, "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_sequence": 1566 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2151 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2951 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2150 }, "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_sequence": 2143 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2944 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2142 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 999 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2141 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 998 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2943 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2949 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3578 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3185 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3585 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1556 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1557 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2147 }, "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_sequence": 2146 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1580 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2148 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2149 }, "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_sequence": 1564 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1563 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "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, "tippecanoe:retain_points_multiplier_sequence": 711 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2832 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "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_sequence": 1141 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "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_sequence": 1179 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2848 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2834 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "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_sequence": 1265 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "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_sequence": 1267 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "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_sequence": 2938 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1886 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2940 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3577 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1887 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1558 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1559 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1526 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1524 }, "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_sequence": 1560 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1570 }, "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_sequence": 1148 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1532 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1897 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1582 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1889 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1585 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "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_sequence": 1543 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2672 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2754 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3212 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "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_sequence": 2749 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1531 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 891 }, "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, "tippecanoe:retain_points_multiplier_sequence": 890 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1529 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 753 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2747 }, "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, "tippecanoe:retain_points_multiplier_sequence": 752 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3356 }, "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, "tippecanoe:retain_points_multiplier_sequence": 886 }, "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, "tippecanoe:retain_points_multiplier_sequence": 748 }, "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_sequence": 749 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 887 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2285 }, "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, "tippecanoe:retain_points_multiplier_sequence": 892 }, "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_sequence": 893 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 884 }, "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_sequence": 885 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 564 }, "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, "tippecanoe:retain_points_multiplier_sequence": 567 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1538 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 568 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "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, "tippecanoe:retain_points_multiplier_sequence": 875 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3366 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "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_sequence": 2140 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3193 }, "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, "tippecanoe:retain_points_multiplier_sequence": 870 }, "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, "tippecanoe:retain_points_multiplier_sequence": 871 }, "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, "tippecanoe:retain_points_multiplier_sequence": 878 }, "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_sequence": 879 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "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, "tippecanoe:retain_points_multiplier_sequence": 563 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 566 }, "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, "tippecanoe:retain_points_multiplier_sequence": 562 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3322 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3010 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2551 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2552 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2555 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "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, "tippecanoe:retain_points_multiplier_sequence": 888 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2135 }, "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_sequence": 299 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 979 }, "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, "tippecanoe:retain_points_multiplier_sequence": 301 }, "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, "tippecanoe:retain_points_multiplier_sequence": 980 }, "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, "tippecanoe:retain_points_multiplier_sequence": 867 }, "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_sequence": 874 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "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, "tippecanoe:retain_points_multiplier_sequence": 872 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 954 }, "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, "tippecanoe:retain_points_multiplier_sequence": 873 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2554 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 955 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 946 }, "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, "tippecanoe:retain_points_multiplier_sequence": 947 }, "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, "tippecanoe:retain_points_multiplier_sequence": 963 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 962 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "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, "tippecanoe:retain_points_multiplier_sequence": 327 }, "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, "tippecanoe:retain_points_multiplier_sequence": 961 }, "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, "tippecanoe:retain_points_multiplier_sequence": 876 }, "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_sequence": 2104 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 877 }, "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, "tippecanoe:retain_points_multiplier_sequence": 948 }, "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, "tippecanoe:retain_points_multiplier_sequence": 957 }, "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, "tippecanoe:retain_points_multiplier_sequence": 956 }, "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_sequence": 966 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "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, "tippecanoe:retain_points_multiplier_sequence": 949 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 950 }, "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, "tippecanoe:retain_points_multiplier_sequence": 683 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 682 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 685 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3379 }, "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, "tippecanoe:retain_points_multiplier_sequence": 684 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 256 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "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, "tippecanoe:retain_points_multiplier_sequence": 258 }, "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_sequence": 259 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3343 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3228 }, "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_sequence": 1161 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3387 }, "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, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 261 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2107 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2105 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3344 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "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, "tippecanoe:retain_points_multiplier_sequence": 303 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2098 }, "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_sequence": 2125 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "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, "tippecanoe:retain_points_multiplier_sequence": 958 }, "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, "tippecanoe:retain_points_multiplier_sequence": 959 }, "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, "tippecanoe:retain_points_multiplier_sequence": 964 }, "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_sequence": 325 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "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, "tippecanoe:retain_points_multiplier_sequence": 322 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 320 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1513 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "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, "tippecanoe:retain_points_multiplier_sequence": 388 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "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, "tippecanoe:retain_points_multiplier_sequence": 317 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "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_sequence": 1060 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "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_sequence": 329 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "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_sequence": 387 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 278 }, "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, "tippecanoe:retain_points_multiplier_sequence": 264 }, "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, "tippecanoe:retain_points_multiplier_sequence": 265 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2478 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2477 }, "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, "tippecanoe:retain_points_multiplier_sequence": 296 }, "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, "tippecanoe:retain_points_multiplier_sequence": 297 }, "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, "tippecanoe:retain_points_multiplier_sequence": 298 }, "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_sequence": 2739 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "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, "tippecanoe:retain_points_multiplier_sequence": 250 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2738 }, "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, "tippecanoe:retain_points_multiplier_sequence": 251 }, "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_sequence": 2475 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2240 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 239 }, "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, "tippecanoe:retain_points_multiplier_sequence": 236 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2239 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 240 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2853 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2852 }, "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, "tippecanoe:retain_points_multiplier_sequence": 372 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3522 }, "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_sequence": 268 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "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, "tippecanoe:retain_points_multiplier_sequence": 252 }, "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, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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, "tippecanoe:retain_points_multiplier_sequence": 270 }, "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_sequence": 269 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "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, "tippecanoe:retain_points_multiplier_sequence": 374 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 373 }, "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, "tippecanoe:retain_points_multiplier_sequence": 375 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 376 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2960 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2961 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3517 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3096 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3216 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2962 }, "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_sequence": 2963 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3596 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3516 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3094 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2681 }, "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_sequence": 3252 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3597 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2965 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3095 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3091 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3375 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3092 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3097 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3098 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3042 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3043 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3169 }, "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, "tippecanoe:retain_points_multiplier_sequence": 835 }, "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, "tippecanoe:retain_points_multiplier_sequence": 818 }, "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_sequence": 836 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2235 }, "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_sequence": 837 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3353 }, "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_sequence": 1769 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3354 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1772 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3352 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3355 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1768 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1476 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2512 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3121 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3122 }, "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_sequence": 3123 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3125 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3126 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2465 }, "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_sequence": 2385 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2462 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1991 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1989 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1773 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2467 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2384 }, "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, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "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_sequence": 3521 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "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, "tippecanoe:retain_points_multiplier_sequence": 367 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "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, "tippecanoe:retain_points_multiplier_sequence": 359 }, "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_sequence": 3515 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2544 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2545 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3636 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2547 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1693 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3253 }, "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, "tippecanoe:retain_points_multiplier_sequence": 340 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2541 }, "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_sequence": 341 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1691 }, "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_sequence": 3254 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3316 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2212 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2772 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2668 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2667 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3459 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2224 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2203 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2202 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3468 }, "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, "tippecanoe:retain_points_multiplier_sequence": 378 }, "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_sequence": 3469 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "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, "tippecanoe:retain_points_multiplier_sequence": 338 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3325 }, "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_sequence": 3326 }, "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_sequence": 3220 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "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, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3221 }, "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, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 343 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1603 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "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, "tippecanoe:retain_points_multiplier_sequence": 981 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3525 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 339 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1602 }, "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, "tippecanoe:retain_points_multiplier_sequence": 587 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "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_sequence": 2208 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3246 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2226 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3393 }, "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_sequence": 1013 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3394 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3306 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1927 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3167 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3165 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1922 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1917 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2348 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1918 }, "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_sequence": 2351 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1923 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1930 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "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_sequence": 3247 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2225 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2213 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3245 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2209 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1504 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3305 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1501 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1500 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2352 }, "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_sequence": 2353 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "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_sequence": 2201 }, "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_sequence": 3395 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2214 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3304 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1506 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1502 }, "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_sequence": 3303 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2341 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1507 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3341 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2237 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2238 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2709 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3124 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2466 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2908 }, "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_sequence": 2245 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2460 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2440 }, "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, "tippecanoe:retain_points_multiplier_sequence": 984 }, "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_sequence": 983 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "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, "tippecanoe:retain_points_multiplier_sequence": 960 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 951 }, "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, "tippecanoe:retain_points_multiplier_sequence": 952 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3189 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1516 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1517 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2380 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3566 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3307 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2382 }, "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_sequence": 2383 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1519 }, "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, "tippecanoe:retain_points_multiplier_sequence": 868 }, "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, "tippecanoe:retain_points_multiplier_sequence": 869 }, "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_sequence": 3328 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3329 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2901 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2897 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2904 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2910 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3376 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2548 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1936 }, "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_sequence": 1937 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1934 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2243 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "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_sequence": 2902 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2891 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1514 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1601 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "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, "tippecanoe:retain_points_multiplier_sequence": 453 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "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, "tippecanoe:retain_points_multiplier_sequence": 407 }, "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_sequence": 1157 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "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_sequence": 1164 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "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, "tippecanoe:retain_points_multiplier_sequence": 406 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "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, "tippecanoe:retain_points_multiplier_sequence": 418 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 419 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3350 }, "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, "tippecanoe:retain_points_multiplier_sequence": 431 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1972 }, "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_sequence": 1069 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "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, "tippecanoe:retain_points_multiplier_sequence": 454 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "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_sequence": 1102 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3362 }, "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, "tippecanoe:retain_points_multiplier_sequence": 458 }, "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, "tippecanoe:retain_points_multiplier_sequence": 459 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 463 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "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_sequence": 1095 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "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_sequence": 1098 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "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, "tippecanoe:retain_points_multiplier_sequence": 533 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "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_sequence": 2080 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2899 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "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_sequence": 3487 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1921 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3404 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1716 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1717 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1919 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2898 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2900 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2893 }, "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_sequence": 2892 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2912 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2906 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2911 }, "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_sequence": 1913 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1916 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2318 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2312 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2313 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2316 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3201 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1503 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1606 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "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_sequence": 1932 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1605 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "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_sequence": 1809 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3638 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2204 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2222 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1416 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1491 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3274 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1933 }, "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, "tippecanoe:retain_points_multiplier_sequence": 47 }, "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, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2574 }, "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_sequence": 3614 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1415 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2576 }, "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_sequence": 3249 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2580 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2582 }, "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, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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_sequence": 3281 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1496 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2647 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3273 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3572 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2585 }, "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_sequence": 2584 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3208 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1477 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "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_sequence": 3309 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 593 }, "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, "tippecanoe:retain_points_multiplier_sequence": 590 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1911 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3209 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2594 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3210 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1910 }, "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, "tippecanoe:retain_points_multiplier_sequence": 817 }, "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, "tippecanoe:retain_points_multiplier_sequence": 595 }, "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_sequence": 594 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "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, "tippecanoe:retain_points_multiplier_sequence": 788 }, "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, "tippecanoe:retain_points_multiplier_sequence": 794 }, "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_sequence": 1114 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 592 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 591 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1404 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2577 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2596 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3211 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2595 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2590 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2217 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2218 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3543 }, "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_sequence": 2205 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2206 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3223 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2063 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2054 }, "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_sequence": 2053 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2219 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3590 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2303 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2304 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2044 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "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, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "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, "tippecanoe:retain_points_multiplier_sequence": 645 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2069 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2068 }, "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_sequence": 2310 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2309 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2301 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "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_sequence": 128 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1646 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1627 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1642 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1940 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "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, "tippecanoe:retain_points_multiplier_sequence": 894 }, "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, "tippecanoe:retain_points_multiplier_sequence": 908 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1942 }, "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_sequence": 1718 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3570 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2413 }, "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, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1947 }, "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_sequence": 1948 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3271 }, "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, "tippecanoe:retain_points_multiplier_sequence": 130 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2774 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3202 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2412 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1950 }, "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, "tippecanoe:retain_points_multiplier_sequence": 775 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1779 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 777 }, "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, "tippecanoe:retain_points_multiplier_sequence": 773 }, "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, "tippecanoe:retain_points_multiplier_sequence": 774 }, "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, "tippecanoe:retain_points_multiplier_sequence": 771 }, "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_sequence": 772 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1799 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2988 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "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_sequence": 3635 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3622 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2977 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3029 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3028 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3476 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3634 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3019 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3564 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1949 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "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, "tippecanoe:retain_points_multiplier_sequence": 780 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3015 }, "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, "tippecanoe:retain_points_multiplier_sequence": 781 }, "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_sequence": 3013 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2363 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "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_sequence": 2367 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3022 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3001 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3002 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3039 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2376 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2997 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2365 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1699 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3108 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3106 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2598 }, "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_sequence": 3113 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2599 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "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_sequence": 2615 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3040 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3107 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2262 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2362 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2369 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2256 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1711 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "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_sequence": 3312 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2379 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3114 }, "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_sequence": 2604 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1498 }, "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, "tippecanoe:retain_points_multiplier_sequence": 820 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2603 }, "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, "tippecanoe:retain_points_multiplier_sequence": 834 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3645 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3012 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 746 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2374 }, "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, "tippecanoe:retain_points_multiplier_sequence": 830 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2616 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3034 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3643 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1624 }, "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_sequence": 1623 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1630 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1629 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1640 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "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_sequence": 900 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2878 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2879 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1635 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1632 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2983 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2984 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1648 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1637 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "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_sequence": 1650 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2986 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2980 }, "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_sequence": 2979 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2877 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2881 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 897 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2880 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 898 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 905 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1866 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1867 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 907 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "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, "tippecanoe:retain_points_multiplier_sequence": 899 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2420 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "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_sequence": 3000 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2999 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1865 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1864 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "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_sequence": 1875 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1869 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1868 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 910 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2971 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1877 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1862 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "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_sequence": 2248 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1701 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1700 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1702 }, "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_sequence": 3111 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 826 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3109 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2251 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2252 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1631 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 823 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3112 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1472 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 827 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "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, "tippecanoe:retain_points_multiplier_sequence": 725 }, "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, "tippecanoe:retain_points_multiplier_sequence": 726 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3642 }, "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_sequence": 2370 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1645 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "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_sequence": 719 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 720 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2609 }, "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, "tippecanoe:retain_points_multiplier_sequence": 730 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 729 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1468 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2261 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2260 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1710 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3110 }, "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_sequence": 824 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3117 }, "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, "tippecanoe:retain_points_multiplier_sequence": 833 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2254 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "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_sequence": 2253 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1872 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1703 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2423 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3115 }, "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, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "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, "tippecanoe:retain_points_multiplier_sequence": 828 }, "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, "tippecanoe:retain_points_multiplier_sequence": 831 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "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_sequence": 721 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "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, "tippecanoe:retain_points_multiplier_sequence": 745 }, "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, "tippecanoe:retain_points_multiplier_sequence": 681 }, "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, "tippecanoe:retain_points_multiplier_sequence": 680 }, "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_sequence": 1471 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 744 }, "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, "tippecanoe:retain_points_multiplier_sequence": 732 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 733 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3513 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 76 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1943 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1944 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3358 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1805 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1795 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1796 }, "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_sequence": 2780 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2781 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2778 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1798 }, "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_sequence": 2885 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "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_sequence": 2888 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2889 }, "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, "tippecanoe:retain_points_multiplier_sequence": 883 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2887 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2775 }, "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, "tippecanoe:retain_points_multiplier_sequence": 901 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 909 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3295 }, "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, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2981 }, "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_sequence": 2982 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2992 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "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, "tippecanoe:retain_points_multiplier_sequence": 895 }, "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, "tippecanoe:retain_points_multiplier_sequence": 896 }, "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_sequence": 118 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2247 }, "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, "tippecanoe:retain_points_multiplier_sequence": 904 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2250 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "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, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2635 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "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, "tippecanoe:retain_points_multiplier_sequence": 74 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "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, "tippecanoe:retain_points_multiplier_sequence": 119 }, "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_sequence": 2255 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3177 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2258 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2632 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "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_sequence": 72 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3587 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3613 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2418 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2617 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2429 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "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_sequence": 1429 }, "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, "tippecanoe:retain_points_multiplier_sequence": 902 }, "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, "tippecanoe:retain_points_multiplier_sequence": 903 }, "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_sequence": 1427 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 822 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "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, "tippecanoe:retain_points_multiplier_sequence": 717 }, "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, "tippecanoe:retain_points_multiplier_sequence": 825 }, "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_sequence": 2608 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "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_sequence": 1426 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 723 }, "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, "tippecanoe:retain_points_multiplier_sequence": 724 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 738 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 20 }, "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, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 743 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2415 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2414 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "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_sequence": 2432 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2431 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2784 }, "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_sequence": 2783 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2392 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 718 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2469 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2838 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3116 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "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, "tippecanoe:retain_points_multiplier_sequence": 829 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2613 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2612 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 734 }, "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, "tippecanoe:retain_points_multiplier_sequence": 832 }, "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, "tippecanoe:retain_points_multiplier_sequence": 821 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "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_sequence": 2597 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "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, "tippecanoe:retain_points_multiplier_sequence": 741 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2629 }, "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, "tippecanoe:retain_points_multiplier_sequence": 740 }, "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_sequence": 3466 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "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, "tippecanoe:retain_points_multiplier_sequence": 704 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 716 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1425 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2330 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2390 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3563 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2122 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2327 }, "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_sequence": 3372 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2846 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "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_sequence": 3501 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3298 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2099 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3351 }, "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_sequence": 2084 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2085 }, "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "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, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2883 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "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, "tippecanoe:retain_points_multiplier_sequence": 117 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "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, "tippecanoe:retain_points_multiplier_sequence": 708 }, "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_sequence": 715 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2329 }, "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, "tippecanoe:retain_points_multiplier_sequence": 709 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3511 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "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_sequence": 1083 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3365 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "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, "tippecanoe:retain_points_multiplier_sequence": 712 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2120 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3191 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3357 }, "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, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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_sequence": 33 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3294 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2746 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3327 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2131 }, "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_sequence": 44 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "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, "tippecanoe:retain_points_multiplier_sequence": 48 }, "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, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3339 }, "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, "tippecanoe:retain_points_multiplier_sequence": 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.394218, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 41 }, "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, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3660 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2768 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "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_sequence": 3637 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3557 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3658 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2111 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "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_sequence": 124 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2000 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2048 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3462 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2884 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3659 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1845 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2058 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3600 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2041 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3534 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3531 }, "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_sequence": 1620 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1349 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3611 }, "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_sequence": 123 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3523 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3524 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3530 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3560 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3529 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3655 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "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_sequence": 3648 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "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_sequence": 3629 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3630 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3268 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3431 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 571 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3507 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3508 }, "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, "tippecanoe:retain_points_multiplier_sequence": 573 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 572 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3519 }, "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, "tippecanoe:retain_points_multiplier_sequence": 237 }, "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, "tippecanoe:retain_points_multiplier_sequence": 579 }, "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, "tippecanoe:retain_points_multiplier_sequence": 578 }, "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_sequence": 238 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3506 }, "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, "tippecanoe:retain_points_multiplier_sequence": 575 }, "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, "tippecanoe:retain_points_multiplier_sequence": 577 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "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_sequence": 2915 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3505 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 574 }, "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, "tippecanoe:retain_points_multiplier_sequence": 576 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3504 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3464 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3345 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3346 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1906 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1905 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3347 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3348 }, "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_sequence": 1594 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "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_sequence": 1388 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2841 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2842 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2389 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2835 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3036 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2851 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3037 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "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_sequence": 3035 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3020 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3646 }, "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_sequence": 3586 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3588 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1891 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1892 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3576 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3018 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1901 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "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_sequence": 1269 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1571 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1572 }, "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_sequence": 1587 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1894 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1510 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1562 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3542 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1525 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1884 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "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_sequence": 1509 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1573 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2196 }, "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_sequence": 1780 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2264 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1540 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3458 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3470 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1535 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3598 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2263 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2112 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2375 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2844 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2372 }, "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_sequence": 2391 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2839 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2368 }, "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_sequence": 2232 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2229 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2387 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3038 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1898 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1899 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "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_sequence": 1450 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "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_sequence": 2945 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3360 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1641 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2388 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1724 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2230 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "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_sequence": 1197 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2228 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2393 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "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_sequence": 1052 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3546 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2231 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3384 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3371 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2946 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3541 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "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_sequence": 2957 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2133 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3510 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2093 }, "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_sequence": 214 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3025 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3473 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3030 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3197 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3027 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "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_sequence": 35 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3454 }, "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, "tippecanoe:retain_points_multiplier_sequence": 247 }, "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, "tippecanoe:retain_points_multiplier_sequence": 248 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "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_sequence": 3475 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1575 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2118 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2096 }, "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_sequence": 3558 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2011 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3647 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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_sequence": 3280 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3528 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2744 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2072 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3370 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2246 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2012 }, "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, "tippecanoe:retain_points_multiplier_sequence": 246 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 244 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 245 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 1633 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2115 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "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, "tippecanoe:retain_points_multiplier_sequence": 223 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2010 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3265 }, "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, "tippecanoe:retain_points_multiplier_sequence": 222 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3561 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "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, "tippecanoe:retain_points_multiplier_sequence": 242 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "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, "tippecanoe:retain_points_multiplier_sequence": 220 }, "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_sequence": 1552 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1590 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3650 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "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_sequence": 1160 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 812 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3279 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 813 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3227 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 262 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 814 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3385 }, "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, "tippecanoe:retain_points_multiplier_sequence": 257 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2101 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2108 }, "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, "tippecanoe:retain_points_multiplier_sequence": 815 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "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_sequence": 3226 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2737 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2097 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3262 }, "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_sequence": 2129 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2128 }, "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, "tippecanoe:retain_points_multiplier_sequence": 801 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3661 }, "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, "tippecanoe:retain_points_multiplier_sequence": 802 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3224 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 300 }, "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, "tippecanoe:retain_points_multiplier_sequence": 803 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2114 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3079 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3059 }, "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, "tippecanoe:retain_points_multiplier_sequence": 283 }, "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, "tippecanoe:retain_points_multiplier_sequence": 282 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3060 }, "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_sequence": 293 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3061 }, "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, "tippecanoe:retain_points_multiplier_sequence": 292 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3062 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3063 }, "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_sequence": 3064 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "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, "tippecanoe:retain_points_multiplier_sequence": 332 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 804 }, "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, "tippecanoe:retain_points_multiplier_sequence": 314 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 315 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3186 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2538 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2539 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3187 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "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, "tippecanoe:retain_points_multiplier_sequence": 321 }, "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, "tippecanoe:retain_points_multiplier_sequence": 323 }, "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_sequence": 324 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3065 }, "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, "tippecanoe:retain_points_multiplier_sequence": 337 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "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_sequence": 3067 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3068 }, "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_sequence": 3070 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3069 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3072 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3074 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2013 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2015 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "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_sequence": 289 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "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, "tippecanoe:retain_points_multiplier_sequence": 287 }, "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, "tippecanoe:retain_points_multiplier_sequence": 295 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3243 }, "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_sequence": 288 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2019 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3548 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3556 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3550 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3551 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 243 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "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, "tippecanoe:retain_points_multiplier_sequence": 635 }, "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, "tippecanoe:retain_points_multiplier_sequence": 634 }, "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_sequence": 285 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "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, "tippecanoe:retain_points_multiplier_sequence": 620 }, "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, "tippecanoe:retain_points_multiplier_sequence": 619 }, "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_sequence": 280 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "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, "tippecanoe:retain_points_multiplier_sequence": 621 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 622 }, "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, "tippecanoe:retain_points_multiplier_sequence": 637 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 638 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2021 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2022 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3555 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2025 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2026 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "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_sequence": 2027 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3552 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3554 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "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_sequence": 3584 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3583 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 623 }, "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, "tippecanoe:retain_points_multiplier_sequence": 624 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 625 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3321 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1863 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3652 }, "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_sequence": 3651 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3374 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3378 }, "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, "tippecanoe:retain_points_multiplier_sequence": 531 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3610 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 3383 }, "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": 4, "tippecanoe:retain_points_multiplier_sequence": 2425 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2779 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "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_sequence": 2113 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2088 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2089 }, "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_sequence": 2132 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2005 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3318 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2091 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2008 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2007 }, "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, "tippecanoe:retain_points_multiplier_sequence": 193 }, "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, "tippecanoe:retain_points_multiplier_sequence": 194 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2117 }, "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_sequence": 169 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2116 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2087 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2003 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2002 }, "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_sequence": 168 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3654 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3471 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2004 }, "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, "tippecanoe:retain_points_multiplier_sequence": 186 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3455 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1619 }, "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, "tippecanoe:retain_points_multiplier_sequence": 160 }, "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, "tippecanoe:retain_points_multiplier_sequence": 156 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3276 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3320 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "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, "tippecanoe:retain_points_multiplier_sequence": 185 }, "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_sequence": 1548 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "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, "tippecanoe:retain_points_multiplier_sequence": 210 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "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_sequence": 205 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "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_sequence": 1550 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 221 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3266 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3174 }, "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, "tippecanoe:retain_points_multiplier_sequence": 617 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 219 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3547 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3388 }, "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, "tippecanoe:retain_points_multiplier_sequence": 616 }, "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, "tippecanoe:retain_points_multiplier_sequence": 615 }, "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_sequence": 3533 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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, "tippecanoe:retain_points_multiplier_sequence": 215 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2930 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2929 }, "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_sequence": 2927 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3500 }, "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, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3478 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3518 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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, "tippecanoe:retain_points_multiplier_sequence": 59 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3656 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "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, "tippecanoe:retain_points_multiplier_sequence": 174 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1547 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3653 }, "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_sequence": 614 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "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, "tippecanoe:retain_points_multiplier_sequence": 57 }, "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, "tippecanoe:retain_points_multiplier_sequence": 602 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3308 }, "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_sequence": 1546 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3657 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1554 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3267 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3467 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 64 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3499 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1764 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3363 }, "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_sequence": 183 }, "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, "tippecanoe:retain_points_multiplier_sequence": 191 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3612 }, "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_sequence": 195 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2925 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3333 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2922 }, "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_sequence": 189 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2923 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2924 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3175 }, "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, "tippecanoe:retain_points_multiplier_sequence": 188 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 190 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1765 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3284 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3453 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3447 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3422 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3269 }, "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, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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, "tippecanoe:retain_points_multiplier_sequence": 30 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "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_sequence": 147 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2921 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2920 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3430 }, "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, "tippecanoe:retain_points_multiplier_sequence": 184 }, "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_sequence": 182 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3391 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3390 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3417 }, "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, "tippecanoe:retain_points_multiplier_sequence": 181 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 65 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2410 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3369 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2396 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2398 }, "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, "tippecanoe:retain_points_multiplier_sequence": 290 }, "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_sequence": 294 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3083 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3090 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3084 }, "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_sequence": 3565 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2526 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1757 }, "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, "tippecanoe:retain_points_multiplier_sequence": 307 }, "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, "tippecanoe:retain_points_multiplier_sequence": 309 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 308 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3602 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2516 }, "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, "tippecanoe:retain_points_multiplier_sequence": 305 }, "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_sequence": 3491 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "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_sequence": 3607 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3603 }, "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, "tippecanoe:retain_points_multiplier_sequence": 311 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 312 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3085 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3086 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2399 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "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, "tippecanoe:retain_points_multiplier_sequence": 628 }, "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, "tippecanoe:retain_points_multiplier_sequence": 629 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2401 }, "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_sequence": 2402 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2403 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3641 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2464 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "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_sequence": 411 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3087 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2518 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3088 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 390 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2520 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2671 }, "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_sequence": 2670 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3141 }, "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_sequence": 2521 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2515 }, "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, "tippecanoe:retain_points_multiplier_sequence": 412 }, "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, "tippecanoe:retain_points_multiplier_sequence": 413 }, "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, "tippecanoe:retain_points_multiplier_sequence": 408 }, "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_sequence": 1758 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3323 }, "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, "tippecanoe:retain_points_multiplier_sequence": 409 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2522 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2523 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3142 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3151 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3150 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3222 }, "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, "tippecanoe:retain_points_multiplier_sequence": 912 }, "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, "tippecanoe:retain_points_multiplier_sequence": 913 }, "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, "tippecanoe:retain_points_multiplier_sequence": 914 }, "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_sequence": 316 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 915 }, "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, "tippecanoe:retain_points_multiplier_sequence": 334 }, "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, "tippecanoe:retain_points_multiplier_sequence": 335 }, "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, "tippecanoe:retain_points_multiplier_sequence": 330 }, "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_sequence": 331 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3605 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3606 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3604 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3302 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3392 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3418 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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, "tippecanoe:retain_points_multiplier_sequence": 133 }, "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, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 132 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3432 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3419 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3290 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2890 }, "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_sequence": 3433 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "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, "tippecanoe:retain_points_multiplier_sequence": 313 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3282 }, "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, "tippecanoe:retain_points_multiplier_sequence": 137 }, "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_sequence": 3496 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "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, "tippecanoe:retain_points_multiplier_sequence": 386 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 385 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1992 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1994 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "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, "tippecanoe:retain_points_multiplier_sequence": 391 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3143 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3147 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3148 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3149 }, "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_sequence": 911 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3497 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3498 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "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_sequence": 1997 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1999 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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, "tippecanoe:retain_points_multiplier_sequence": 139 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3283 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3416 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "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, "tippecanoe:retain_points_multiplier_sequence": 141 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3299 }, "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, "tippecanoe:retain_points_multiplier_sequence": 399 }, "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_sequence": 3474 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "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, "tippecanoe:retain_points_multiplier_sequence": 398 }, "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, "tippecanoe:retain_points_multiplier_sequence": 402 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3482 }, "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_sequence": 3486 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "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, "tippecanoe:retain_points_multiplier_sequence": 143 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3415 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3291 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3420 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 806 }, "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, "tippecanoe:retain_points_multiplier_sequence": 415 }, "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, "tippecanoe:retain_points_multiplier_sequence": 807 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 810 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2164 }, "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, "tippecanoe:retain_points_multiplier_sequence": 808 }, "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_sequence": 809 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "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, "tippecanoe:retain_points_multiplier_sequence": 421 }, "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, "tippecanoe:retain_points_multiplier_sequence": 424 }, "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, "tippecanoe:retain_points_multiplier_sequence": 425 }, "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_sequence": 3075 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2167 }, "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, "tippecanoe:retain_points_multiplier_sequence": 478 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 480 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 811 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3225 }, "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, "tippecanoe:retain_points_multiplier_sequence": 479 }, "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, "tippecanoe:retain_points_multiplier_sequence": 475 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3386 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "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, "tippecanoe:retain_points_multiplier_sequence": 532 }, "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, "tippecanoe:retain_points_multiplier_sequence": 131 }, "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, "tippecanoe:retain_points_multiplier_sequence": 589 }, "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_sequence": 790 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 791 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3162 }, "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, "tippecanoe:retain_points_multiplier_sequence": 793 }, "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_sequence": 792 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "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, "tippecanoe:retain_points_multiplier_sequence": 787 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 477 }, "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, "tippecanoe:retain_points_multiplier_sequence": 476 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "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, "tippecanoe:retain_points_multiplier_sequence": 940 }, "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, "tippecanoe:retain_points_multiplier_sequence": 941 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2035 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "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, "tippecanoe:retain_points_multiplier_sequence": 789 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3594 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "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_sequence": 2586 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3595 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2587 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2040 }, "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_sequence": 2039 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2051 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "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, "tippecanoe:retain_points_multiplier_sequence": 945 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 944 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2029 }, "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, "tippecanoe:retain_points_multiplier_sequence": 429 }, "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, "tippecanoe:retain_points_multiplier_sequence": 430 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2030 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2031 }, "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, "tippecanoe:retain_points_multiplier_sequence": 434 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3553 }, "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, "tippecanoe:retain_points_multiplier_sequence": 433 }, "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_sequence": 3490 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3549 }, "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, "tippecanoe:retain_points_multiplier_sequence": 465 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "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_sequence": 3078 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3077 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3520 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3591 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2032 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 767 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2065 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3081 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3080 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3668 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1316 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3381 }, "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, "tippecanoe:retain_points_multiplier_sequence": 423 }, "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_sequence": 1317 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "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, "tippecanoe:retain_points_multiplier_sequence": 461 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3380 }, "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_sequence": 426 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 764 }, "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, "tippecanoe:retain_points_multiplier_sequence": 765 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3502 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1329 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1330 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 766 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 763 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "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, "tippecanoe:retain_points_multiplier_sequence": 934 }, "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, "tippecanoe:retain_points_multiplier_sequence": 935 }, "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_sequence": 931 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 930 }, "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, "tippecanoe:retain_points_multiplier_sequence": 929 }, "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, "tippecanoe:retain_points_multiplier_sequence": 928 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "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_sequence": 2536 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3514 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2195 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 588 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 937 }, "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, "tippecanoe:retain_points_multiplier_sequence": 938 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "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, "tippecanoe:retain_points_multiplier_sequence": 942 }, "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, "tippecanoe:retain_points_multiplier_sequence": 943 }, "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_sequence": 2194 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "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, "tippecanoe:retain_points_multiplier_sequence": 932 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3319 }, "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, "tippecanoe:retain_points_multiplier_sequence": 797 }, "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_sequence": 796 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2773 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 598 }, "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, "tippecanoe:retain_points_multiplier_sequence": 597 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 596 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2043 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2073 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2071 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2699 }, "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_sequence": 2698 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2934 }, "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_sequence": 2935 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2695 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3461 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3463 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2689 }, "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_sequence": 2060 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2067 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2066 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 975 }, "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, "tippecanoe:retain_points_multiplier_sequence": 970 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 974 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2936 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2693 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3311 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1955 }, "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_sequence": 644 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2298 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2306 }, "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, "tippecanoe:retain_points_multiplier_sequence": 640 }, "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_sequence": 639 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 643 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2137 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 642 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 646 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2435 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2311 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "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, "tippecanoe:retain_points_multiplier_sequence": 580 }, "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, "tippecanoe:retain_points_multiplier_sequence": 582 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "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_sequence": 1252 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3340 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2434 }, "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, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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_sequence": 37 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "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, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2532 }, "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, "tippecanoe:retain_points_multiplier_sequence": 976 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 969 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2530 }, "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, "tippecanoe:retain_points_multiplier_sequence": 967 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 968 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3192 }, "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, "tippecanoe:retain_points_multiplier_sequence": 539 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2685 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "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_sequence": 2701 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2702 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3562 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3315 }, "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, "tippecanoe:retain_points_multiplier_sequence": 971 }, "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_sequence": 1238 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 972 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 978 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 977 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2691 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2690 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "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_sequence": 1246 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "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_sequence": 1854 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "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_sequence": 3006 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3003 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3004 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3008 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3009 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3156 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3161 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3157 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "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, "tippecanoe:retain_points_multiplier_sequence": 630 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "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, "tippecanoe:retain_points_multiplier_sequence": 631 }, "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_sequence": 632 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "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, "tippecanoe:retain_points_multiplier_sequence": 432 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2406 }, "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_sequence": 3480 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3593 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 762 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2524 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1759 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2525 }, "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, "tippecanoe:retain_points_multiplier_sequence": 464 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 460 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 605 }, "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, "tippecanoe:retain_points_multiplier_sequence": 604 }, "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, "tippecanoe:retain_points_multiplier_sequence": 603 }, "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, "tippecanoe:retain_points_multiplier_sequence": 660 }, "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_sequence": 661 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3198 }, "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, "tippecanoe:retain_points_multiplier_sequence": 647 }, "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, "tippecanoe:retain_points_multiplier_sequence": 939 }, "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, "tippecanoe:retain_points_multiplier_sequence": 655 }, "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_sequence": 933 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3382 }, "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, "tippecanoe:retain_points_multiplier_sequence": 649 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 654 }, "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, "tippecanoe:retain_points_multiplier_sequence": 659 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2919 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2917 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1652 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2266 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "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_sequence": 3145 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3144 }, "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, "tippecanoe:retain_points_multiplier_sequence": 456 }, "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, "tippecanoe:retain_points_multiplier_sequence": 457 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3146 }, "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_sequence": 917 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "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, "tippecanoe:retain_points_multiplier_sequence": 451 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 919 }, "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, "tippecanoe:retain_points_multiplier_sequence": 918 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 466 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 921 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 920 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "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, "tippecanoe:retain_points_multiplier_sequence": 452 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3484 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3483 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3485 }, "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, "tippecanoe:retain_points_multiplier_sequence": 145 }, "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_sequence": 150 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1722 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "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_sequence": 2281 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2280 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2700 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2278 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2324 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2325 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2277 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3359 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3421 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3413 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3285 }, "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_sequence": 154 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "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_sequence": 3292 }, "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, "tippecanoe:retain_points_multiplier_sequence": 155 }, "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, "tippecanoe:retain_points_multiplier_sequence": 158 }, "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_sequence": 1719 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2322 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2323 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3426 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3424 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1967 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 161 }, "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, "tippecanoe:retain_points_multiplier_sequence": 164 }, "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, "tippecanoe:retain_points_multiplier_sequence": 163 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3440 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3608 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3609 }, "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, "tippecanoe:retain_points_multiplier_sequence": 166 }, "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_sequence": 3425 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3441 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3412 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3452 }, "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_sequence": 652 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2706 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2705 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2659 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 662 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2684 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2697 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3665 }, "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, "tippecanoe:retain_points_multiplier_sequence": 584 }, "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, "tippecanoe:retain_points_multiplier_sequence": 583 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2683 }, "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_sequence": 2694 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3361 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2708 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2707 }, "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, "tippecanoe:retain_points_multiplier_sequence": 613 }, "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_sequence": 3601 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "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_sequence": 653 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2653 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2654 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2319 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2320 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3047 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1596 }, "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, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1598 }, "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_sequence": 3154 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3155 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3160 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3159 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1599 }, "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_sequence": 1597 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3158 }, "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, "tippecanoe:retain_points_multiplier_sequence": 586 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 585 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1848 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1851 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1859 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1858 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3616 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2296 }, "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_sequence": 2292 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1846 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1847 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1850 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "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_sequence": 1857 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1856 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2656 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3615 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2933 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2275 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1969 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2276 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1968 }, "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_sequence": 3200 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3199 }, "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, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3442 }, "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_sequence": 3451 }, "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_sequence": 3411 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "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, "tippecanoe:retain_points_multiplier_sequence": 172 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 171 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2265 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3288 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3443 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3410 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3450 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2563 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 175 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2274 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3427 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2567 }, "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_sequence": 3423 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2273 }, "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, "tippecanoe:retain_points_multiplier_sequence": 177 }, "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, "tippecanoe:retain_points_multiplier_sequence": 178 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "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_sequence": 3153 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3293 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3409 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3408 }, "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, "tippecanoe:retain_points_multiplier_sequence": 179 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 180 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3045 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3046 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2293 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3456 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 148 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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, "tippecanoe:retain_points_multiplier_sequence": 153 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3389 }, "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_sequence": 2294 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3617 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2291 }, "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, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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, "tippecanoe:retain_points_multiplier_sequence": 162 }, "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_sequence": 3444 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3407 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3428 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3449 }, "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, "tippecanoe:retain_points_multiplier_sequence": 165 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3286 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3618 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3457 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3044 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1402 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "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_sequence": 1555 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3488 }, "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_sequence": 3494 }, "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_sequence": 27 }, "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_sequence": 3489 }, "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_sequence": 26 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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_sequence": 29 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 144 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3465 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 146 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3414 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3429 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3300 }, "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, "tippecanoe:retain_points_multiplier_sequence": 151 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1983 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1982 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "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_sequence": 3539 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3229 }, "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_sequence": 1231 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1615 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1614 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 756 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1761 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1977 }, "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, "tippecanoe:retain_points_multiplier_sequence": 755 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2271 }, "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_sequence": 2272 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2270 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1762 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1763 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1963 }, "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_sequence": 1964 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1609 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 754 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1965 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3163 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2268 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2565 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2564 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1979 }, "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_sequence": 1976 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1617 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "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_sequence": 1664 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3297 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1660 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1808 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1662 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2199 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2192 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2200 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "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_sequence": 1668 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1659 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1657 }, "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_sequence": 1433 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1656 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1654 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3275 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2745 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2508 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2079 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1682 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1679 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "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_sequence": 1441 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1436 }, "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, "tippecanoe:retain_points_multiplier_sequence": 550 }, "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_sequence": 551 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3625 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3631 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3230 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3334 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "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, "tippecanoe:retain_points_multiplier_sequence": 881 }, "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, "tippecanoe:retain_points_multiplier_sequence": 880 }, "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_sequence": 345 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "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, "tippecanoe:retain_points_multiplier_sequence": 882 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "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_sequence": 1333 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3626 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 799 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1685 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3176 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2505 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3632 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3628 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3633 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "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, "tippecanoe:retain_points_multiplier_sequence": 798 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3627 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "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_sequence": 1687 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1692 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3278 }, "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, "tippecanoe:retain_points_multiplier_sequence": 364 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3272 }, "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_sequence": 363 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2504 }, "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, "tippecanoe:retain_points_multiplier_sequence": 606 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 607 }, "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, "tippecanoe:retain_points_multiplier_sequence": 542 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "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": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 554 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3649 }, "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, "tippecanoe:retain_points_multiplier_sequence": 536 }, "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, "tippecanoe:retain_points_multiplier_sequence": 537 }, "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": 3, "tippecanoe:retain_points_multiplier_sequence": 544 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2626 }, "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, "tippecanoe:retain_points_multiplier_sequence": 541 }, "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, "tippecanoe:retain_points_multiplier_sequence": 609 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "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_sequence": 2625 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2344 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2357 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2356 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2349 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2350 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2346 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 608 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3330 }, "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_sequence": 611 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2338 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2591 }, "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_sequence": 610 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2355 }, "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_sequence": 2627 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2592 }, "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_sequence": 2679 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2680 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2578 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3251 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3255 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3256 }, "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_sequence": 2569 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2570 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2572 }, "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_sequence": 3248 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2573 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "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_sequence": 1971 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2037 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2057 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3589 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2070 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2036 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2055 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 540 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2049 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2038 }, "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_sequence": 3559 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1806 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1488 }, "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_sequence": 1482 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1962 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1956 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1952 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1960 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1957 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1959 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2437 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "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_sequence": 925 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1484 }, "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_sequence": 2078 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1490 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2741 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2743 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 926 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 784 }, "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, "tippecanoe:retain_points_multiplier_sequence": 783 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2138 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "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, "tippecanoe:retain_points_multiplier_sequence": 785 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "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_sequence": 1409 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3337 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2299 }, "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_sequence": 1411 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2818 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2816 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3373 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2815 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2646 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2641 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2639 }, "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_sequence": 2642 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2638 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2821 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3052 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3194 }, "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_sequence": 1523 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2822 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3402 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3056 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3400 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3055 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3049 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3048 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3058 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3057 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "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_sequence": 2824 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2676 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1494 }, "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_sequence": 2644 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1493 }, "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_sequence": 1418 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2678 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2677 }, "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_sequence": 3190 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3130 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3213 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3214 }, "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_sequence": 3264 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3219 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3218 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3127 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3203 }, "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_sequence": 3204 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3399 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3398 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3205 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3051 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3206 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3207 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3054 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3053 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2507 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3396 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3050 }, "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_sequence": 3128 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3134 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3133 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3131 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3132 }, "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_sequence": 2663 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3129 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 3217 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 656 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2650 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3301 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "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, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3289 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "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_sequence": 3448 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3406 }, "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_sequence": 3445 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3401 }, "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, "tippecanoe:retain_points_multiplier_sequence": 651 }, "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_sequence": 3397 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "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, "tippecanoe:retain_points_multiplier_sequence": 665 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 657 }, "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, "tippecanoe:retain_points_multiplier_sequence": 664 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3183 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3182 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2820 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2826 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 3446 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3481 }, "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, "tippecanoe:retain_points_multiplier_sequence": 663 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3287 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3368 }, "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_sequence": 3181 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3180 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3179 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3178 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "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_sequence": 3592 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1670 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 1401 }, "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, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": 2, "tippecanoe:retain_points_multiplier_sequence": 51 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2339 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3405 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 530 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3168 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "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": 1, "tippecanoe:retain_points_multiplier_sequence": 2160 }, "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": 4, "tippecanoe:retain_points_multiplier_sequence": 3170 }, "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": 6, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3172 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3173 }, "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_sequence": 2157 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784147 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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_sequence": 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_sequence": 2 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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_sequence": 4 }, "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_sequence": 5 }, "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_sequence": 6 }, "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_sequence": 7 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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_sequence": 9 }, "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_sequence": 10 }, "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_sequence": 11 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "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_sequence": 226 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "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, "tippecanoe:retain_points_multiplier_sequence": 638 }, "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_sequence": 637 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "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_sequence": 122 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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_sequence": 52 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "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_sequence": 131 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "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, "tippecanoe:retain_points_multiplier_sequence": 626 }, "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_sequence": 129 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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_sequence": 105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 136 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 572 }, "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, "tippecanoe:retain_points_multiplier_sequence": 573 }, "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_sequence": 543 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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_sequence": 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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_sequence": 31 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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_sequence": 30 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "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, "tippecanoe:retain_points_multiplier_sequence": 212 }, "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_sequence": 104 }, "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, "tippecanoe:retain_points_multiplier_sequence": 611 }, "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_sequence": 28 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "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, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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_sequence": 213 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "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_sequence": 59 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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_sequence": 231 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "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, "tippecanoe:retain_points_multiplier_sequence": 583 }, "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_sequence": 110 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "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_sequence": 570 }, "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, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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_sequence": 107 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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_sequence": 569 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "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_sequence": 194 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "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_sequence": 374 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "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, "tippecanoe:retain_points_multiplier_sequence": 311 }, "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_sequence": 585 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "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_sequence": 568 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "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, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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_sequence": 567 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "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_sequence": 364 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "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, "tippecanoe:retain_points_multiplier_sequence": 201 }, "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_sequence": 578 }, "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, "tippecanoe:retain_points_multiplier_sequence": 361 }, "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_sequence": 193 }, "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, "tippecanoe:retain_points_multiplier_sequence": 199 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "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_sequence": 356 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "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, "tippecanoe:retain_points_multiplier_sequence": 355 }, "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_sequence": 326 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "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_sequence": 315 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "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, "tippecanoe:retain_points_multiplier_sequence": 316 }, "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_sequence": 318 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "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_sequence": 258 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "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, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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_sequence": 259 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "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_sequence": 170 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "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, "tippecanoe:retain_points_multiplier_sequence": 319 }, "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_sequence": 237 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "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_sequence": 635 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "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, "tippecanoe:retain_points_multiplier_sequence": 328 }, "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_sequence": 414 }, "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, "tippecanoe:retain_points_multiplier_sequence": 535 }, "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_sequence": 413 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "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, "tippecanoe:retain_points_multiplier_sequence": 257 }, "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_sequence": 148 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "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_sequence": 557 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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_sequence": 13 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "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_sequence": 12 }, "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, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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, "tippecanoe:retain_points_multiplier_sequence": 402 }, "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_sequence": 620 }, "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, "tippecanoe:retain_points_multiplier_sequence": 411 }, "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_sequence": 147 }, "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, "tippecanoe:retain_points_multiplier_sequence": 186 }, "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, "tippecanoe:retain_points_multiplier_sequence": 405 }, "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_sequence": 549 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "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_sequence": 410 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "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, "tippecanoe:retain_points_multiplier_sequence": 144 }, "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_sequence": 412 }, "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, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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_sequence": 8 }, "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, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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_sequence": 559 }, "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_sequence": 191 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "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_sequence": 433 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 560 }, "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, "tippecanoe:retain_points_multiplier_sequence": 616 }, "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_sequence": 403 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "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_sequence": 615 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "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, "tippecanoe:retain_points_multiplier_sequence": 416 }, "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_sequence": 415 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "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_sequence": 329 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "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, "tippecanoe:retain_points_multiplier_sequence": 158 }, "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_sequence": 571 }, "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, "tippecanoe:retain_points_multiplier_sequence": 153 }, "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_sequence": 154 }, "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_sequence": 323 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "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, "tippecanoe:retain_points_multiplier_sequence": 612 }, "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_sequence": 313 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "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_sequence": 545 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "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, "tippecanoe:retain_points_multiplier_sequence": 287 }, "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_sequence": 286 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "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_sequence": 618 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "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, "tippecanoe:retain_points_multiplier_sequence": 345 }, "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_sequence": 322 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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, "tippecanoe:retain_points_multiplier_sequence": 294 }, "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_sequence": 75 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "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, "tippecanoe:retain_points_multiplier_sequence": 295 }, "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_sequence": 351 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "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_sequence": 343 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "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, "tippecanoe:retain_points_multiplier_sequence": 273 }, "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, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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_sequence": 115 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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_sequence": 349 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "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, "tippecanoe:retain_points_multiplier_sequence": 265 }, "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_sequence": 74 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "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_sequence": 339 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "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, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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_sequence": 68 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "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_sequence": 305 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "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, "tippecanoe:retain_points_multiplier_sequence": 306 }, "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_sequence": 71 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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_sequence": 310 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "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, "tippecanoe:retain_points_multiplier_sequence": 76 }, "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_sequence": 380 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "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_sequence": 353 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "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, "tippecanoe:retain_points_multiplier_sequence": 352 }, "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_sequence": 577 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "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, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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_sequence": 5 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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_sequence": 249 }, "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, "tippecanoe:retain_points_multiplier_sequence": 250 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "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, "tippecanoe:retain_points_multiplier_sequence": 486 }, "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_sequence": 508 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "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_sequence": 511 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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, "tippecanoe:retain_points_multiplier_sequence": 515 }, "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_sequence": 509 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "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, "tippecanoe:retain_points_multiplier_sequence": 256 }, "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_sequence": 506 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "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_sequence": 514 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "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_sequence": 209 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "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, "tippecanoe:retain_points_multiplier_sequence": 242 }, "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_sequence": 241 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "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_sequence": 244 }, "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, "tippecanoe:retain_points_multiplier_sequence": 245 }, "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, "tippecanoe:retain_points_multiplier_sequence": 254 }, "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, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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_sequence": 442 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "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_sequence": 622 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "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, "tippecanoe:retain_points_multiplier_sequence": 337 }, "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_sequence": 333 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "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_sequence": 240 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "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, "tippecanoe:retain_points_multiplier_sequence": 441 }, "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_sequence": 252 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "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_sequence": 440 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "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, "tippecanoe:retain_points_multiplier_sequence": 444 }, "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, "tippecanoe:retain_points_multiplier_sequence": 445 }, "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_sequence": 334 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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, "tippecanoe:retain_points_multiplier_sequence": 582 }, "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_sequence": 335 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "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_sequence": 332 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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_sequence": 600 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "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_sequence": 599 }, "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, "tippecanoe:retain_points_multiplier_sequence": 605 }, "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, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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_sequence": 561 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "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_sequence": 598 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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, "tippecanoe:retain_points_multiplier_sequence": 132 }, "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_sequence": 624 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "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_sequence": 121 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "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, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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_sequence": 119 }, "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, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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, "tippecanoe:retain_points_multiplier_sequence": 118 }, "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, "tippecanoe:retain_points_multiplier_sequence": 208 }, "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, "tippecanoe:retain_points_multiplier_sequence": 223 }, "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_sequence": 224 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "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_sequence": 222 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "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, "tippecanoe:retain_points_multiplier_sequence": 220 }, "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_sequence": 165 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "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_sequence": 163 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "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, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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_sequence": 51 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "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_sequence": 166 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "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, "tippecanoe:retain_points_multiplier_sequence": 627 }, "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_sequence": 233 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "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_sequence": 634 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "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, "tippecanoe:retain_points_multiplier_sequence": 128 }, "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_sequence": 546 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 575 }, "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_sequence": 137 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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, "tippecanoe:retain_points_multiplier_sequence": 203 }, "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_sequence": 138 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "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_sequence": 159 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "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, "tippecanoe:retain_points_multiplier_sequence": 98 }, "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_sequence": 33 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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_sequence": 126 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "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, "tippecanoe:retain_points_multiplier_sequence": 125 }, "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_sequence": 124 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "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_sequence": 628 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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, "tippecanoe:retain_points_multiplier_sequence": 227 }, "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_sequence": 516 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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_sequence": 35 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "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, "tippecanoe:retain_points_multiplier_sequence": 391 }, "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_sequence": 632 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "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_sequence": 633 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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, "tippecanoe:retain_points_multiplier_sequence": 636 }, "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_sequence": 93 }, "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, "tippecanoe:retain_points_multiplier_sequence": 235 }, "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_sequence": 94 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "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, "tippecanoe:retain_points_multiplier_sequence": 228 }, "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_sequence": 229 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "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_sequence": 558 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "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, "tippecanoe:retain_points_multiplier_sequence": 555 }, "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_sequence": 36 }, "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, "tippecanoe:retain_points_multiplier_sequence": 387 }, "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_sequence": 61 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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_sequence": 462 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "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_sequence": 639 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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, "tippecanoe:retain_points_multiplier_sequence": 640 }, "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_sequence": 40 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "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_sequence": 47 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "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, "tippecanoe:retain_points_multiplier_sequence": 463 }, "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_sequence": 113 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 610 }, "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_sequence": 389 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "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, "tippecanoe:retain_points_multiplier_sequence": 330 }, "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_sequence": 65 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "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_sequence": 45 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "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, "tippecanoe:retain_points_multiplier_sequence": 419 }, "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_sequence": 421 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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_sequence": 366 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "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, "tippecanoe:retain_points_multiplier_sequence": 378 }, "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_sequence": 377 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "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_sequence": 371 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "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, "tippecanoe:retain_points_multiplier_sequence": 370 }, "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_sequence": 367 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "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_sequence": 63 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "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, "tippecanoe:retain_points_multiplier_sequence": 359 }, "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_sequence": 360 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "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_sequence": 67 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "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, "tippecanoe:retain_points_multiplier_sequence": 417 }, "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_sequence": 66 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "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_sequence": 423 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "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, "tippecanoe:retain_points_multiplier_sequence": 418 }, "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_sequence": 456 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "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_sequence": 547 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "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, "tippecanoe:retain_points_multiplier_sequence": 613 }, "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_sequence": 298 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "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_sequence": 280 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "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, "tippecanoe:retain_points_multiplier_sequence": 279 }, "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_sequence": 408 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "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_sequence": 409 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 551 }, "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, "tippecanoe:retain_points_multiplier_sequence": 406 }, "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_sequence": 407 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "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_sequence": 397 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "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, "tippecanoe:retain_points_multiplier_sequence": 400 }, "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_sequence": 548 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "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_sequence": 401 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "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, "tippecanoe:retain_points_multiplier_sequence": 301 }, "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_sequence": 275 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "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_sequence": 277 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "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, "tippecanoe:retain_points_multiplier_sequence": 289 }, "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_sequence": 617 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "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_sequence": 281 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "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, "tippecanoe:retain_points_multiplier_sequence": 276 }, "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_sequence": 288 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "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_sequence": 43 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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, "tippecanoe:retain_points_multiplier_sequence": 174 }, "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_sequence": 176 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "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_sequence": 283 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "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, "tippecanoe:retain_points_multiplier_sequence": 278 }, "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_sequence": 614 }, "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, "tippecanoe:retain_points_multiplier_sequence": 20 }, "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_sequence": 236 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "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, "tippecanoe:retain_points_multiplier_sequence": 181 }, "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_sequence": 173 }, "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, "tippecanoe:retain_points_multiplier_sequence": 172 }, "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_sequence": 263 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "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, "tippecanoe:retain_points_multiplier_sequence": 274 }, "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_sequence": 266 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "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_sequence": 112 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "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, "tippecanoe:retain_points_multiplier_sequence": 179 }, "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_sequence": 262 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "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_sequence": 267 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "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, "tippecanoe:retain_points_multiplier_sequence": 272 }, "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_sequence": 271 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "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_sequence": 180 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "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, "tippecanoe:retain_points_multiplier_sequence": 302 }, "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_sequence": 101 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "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_sequence": 178 }, "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, "tippecanoe:retain_points_multiplier_sequence": 308 }, "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, "tippecanoe:retain_points_multiplier_sequence": 177 }, "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_sequence": 303 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "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_sequence": 459 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "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, "tippecanoe:retain_points_multiplier_sequence": 460 }, "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_sequence": 102 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "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_sequence": 89 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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_sequence": 90 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "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_sequence": 394 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "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, "tippecanoe:retain_points_multiplier_sequence": 385 }, "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_sequence": 386 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "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_sequence": 92 }, "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, "tippecanoe:retain_points_multiplier_sequence": 140 }, "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, "tippecanoe:retain_points_multiplier_sequence": 139 }, "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_sequence": 141 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "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_sequence": 576 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "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, "tippecanoe:retain_points_multiplier_sequence": 340 }, "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_sequence": 143 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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_sequence": 473 }, "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, "tippecanoe:retain_points_multiplier_sequence": 474 }, "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, "tippecanoe:retain_points_multiplier_sequence": 466 }, "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_sequence": 467 }, "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, "tippecanoe:retain_points_multiplier_sequence": 150 }, "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_sequence": 580 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "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, "tippecanoe:retain_points_multiplier_sequence": 157 }, "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_sequence": 156 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "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_sequence": 465 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "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, "tippecanoe:retain_points_multiplier_sequence": 564 }, "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_sequence": 476 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "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_sequence": 426 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "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_sequence": 425 }, "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_sequence": 428 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "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_sequence": 477 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "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, "tippecanoe:retain_points_multiplier_sequence": 525 }, "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_sequence": 207 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "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_sequence": 205 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "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, "tippecanoe:retain_points_multiplier_sequence": 247 }, "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_sequence": 248 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "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_sequence": 590 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 593 }, "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, "tippecanoe:retain_points_multiplier_sequence": 495 }, "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_sequence": 591 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "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_sequence": 488 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 478 }, "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, "tippecanoe:retain_points_multiplier_sequence": 471 }, "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_sequence": 472 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "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_sequence": 497 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "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, "tippecanoe:retain_points_multiplier_sequence": 480 }, "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_sequence": 481 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "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_sequence": 453 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "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, "tippecanoe:retain_points_multiplier_sequence": 188 }, "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_sequence": 430 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "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_sequence": 429 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "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, "tippecanoe:retain_points_multiplier_sequence": 151 }, "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_sequence": 152 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "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_sequence": 184 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "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, "tippecanoe:retain_points_multiplier_sequence": 451 }, "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_sequence": 450 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "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_sequence": 448 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "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, "tippecanoe:retain_points_multiplier_sequence": 454 }, "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_sequence": 524 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "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_sequence": 114 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "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, "tippecanoe:retain_points_multiplier_sequence": 538 }, "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_sequence": 554 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "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_sequence": 541 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "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, "tippecanoe:retain_points_multiplier_sequence": 529 }, "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_sequence": 530 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "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_sequence": 588 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "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, "tippecanoe:retain_points_multiplier_sequence": 395 }, "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_sequence": 490 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "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_sequence": 469 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "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, "tippecanoe:retain_points_multiplier_sequence": 532 }, "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_sequence": 533 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "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_sequence": 492 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "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, "tippecanoe:retain_points_multiplier_sequence": 528 }, "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_sequence": 527 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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_sequence": 392 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 586 }, "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, "tippecanoe:retain_points_multiplier_sequence": 489 }, "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_sequence": 499 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "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_sequence": 504 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "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, "tippecanoe:retain_points_multiplier_sequence": 503 }, "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_sequence": 446 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "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_sequence": 500 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "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, "tippecanoe:retain_points_multiplier_sequence": 434 }, "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_sequence": 435 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "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_sequence": 80 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "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, "tippecanoe:retain_points_multiplier_sequence": 443 }, "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_sequence": 437 }, "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, "tippecanoe:retain_points_multiplier_sequence": 566 }, "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_sequence": 439 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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_sequence": 56 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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_sequence": 16 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "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, "tippecanoe:retain_points_multiplier_sequence": 438 }, "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_sequence": 604 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 595 }, "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_sequence": 601 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 592 }, "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, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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_sequence": 587 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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_sequence": 86 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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_sequence": 523 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "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_sequence": 521 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "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, "tippecanoe:retain_points_multiplier_sequence": 475 }, "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_sequence": 483 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "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_sequence": 602 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "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, "tippecanoe:retain_points_multiplier_sequence": 603 }, "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_sequence": 565 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "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_sequence": 84 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "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, "tippecanoe:retain_points_multiplier_sequence": 579 }, "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_sequence": 520 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "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_sequence": 518 }, "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, "tippecanoe:retain_points_multiplier_sequence": 517 }, "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, "tippecanoe:retain_points_multiplier_sequence": 117 }, "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_sequence": 619 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "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_sequence": 217 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "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, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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_sequence": 19 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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_sequence": 17 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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, "tippecanoe:retain_points_multiplier_sequence": 116 }, "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_sequence": 358 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717436 ] } } , -{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.712140 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1672 }, "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_sequence": 2613 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "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_sequence": 2612 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 825 }, "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, "tippecanoe:retain_points_multiplier_sequence": 826 }, "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_sequence": 1554 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "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_sequence": 4017 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4297 }, "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_sequence": 824 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1552 }, "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_sequence": 4296 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "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, "tippecanoe:retain_points_multiplier_sequence": 829 }, "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_sequence": 827 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 828 }, "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_sequence": 2407 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2406 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "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_sequence": 4262 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "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_sequence": 4264 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4263 }, "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_sequence": 1129 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "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_sequence": 1127 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "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_sequence": 2325 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "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_sequence": 736 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2177 }, "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_sequence": 90 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3902 }, "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_sequence": 2184 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2183 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1717 }, "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_sequence": 1722 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "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_sequence": 1718 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1719 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "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_sequence": 2181 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "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_sequence": 2290 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2322 }, "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_sequence": 2323 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "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_sequence": 2324 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2288 }, "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_sequence": 2615 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2616 }, "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_sequence": 2528 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2526 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2293 }, "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_sequence": 2294 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2291 }, "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_sequence": 2176 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 671 }, "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, "tippecanoe:retain_points_multiplier_sequence": 672 }, "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_sequence": 4142 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2292 }, "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_sequence": 1939 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1938 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4138 }, "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_sequence": 4360 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2179 }, "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_sequence": 4140 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1936 }, "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_sequence": 2614 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4143 }, "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_sequence": 4141 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "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_sequence": 2182 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4144 }, "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_sequence": 4359 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3843 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2988 }, "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_sequence": 1224 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "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_sequence": 2986 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4361 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "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_sequence": 2989 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4358 }, "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_sequence": 2990 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "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_sequence": 1801 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3940 }, "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_sequence": 141 }, "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, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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, "tippecanoe:retain_points_multiplier_sequence": 139 }, "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_sequence": 2087 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "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_sequence": 153 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4248 }, "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, "tippecanoe:retain_points_multiplier_sequence": 142 }, "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_sequence": 137 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "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_sequence": 2371 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4223 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "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_sequence": 3066 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3067 }, "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_sequence": 2196 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "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_sequence": 91 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "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_sequence": 949 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "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_sequence": 952 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2187 }, "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_sequence": 3844 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2186 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "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_sequence": 2992 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3580 }, "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_sequence": 3606 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3579 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2980 }, "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_sequence": 2073 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2981 }, "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_sequence": 2976 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2977 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3195 }, "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_sequence": 2056 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2057 }, "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_sequence": 157 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3242 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "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_sequence": 967 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "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_sequence": 964 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "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_sequence": 2199 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 961 }, "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_sequence": 4006 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3615 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1558 }, "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_sequence": 1559 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "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_sequence": 1562 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4302 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1555 }, "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_sequence": 4257 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "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_sequence": 815 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 814 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4093 }, "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_sequence": 154 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1673 }, "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_sequence": 951 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 950 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "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_sequence": 1560 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "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_sequence": 954 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2189 }, "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_sequence": 1577 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "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_sequence": 4410 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "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, "tippecanoe:retain_points_multiplier_sequence": 970 }, "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_sequence": 3766 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3340 }, "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_sequence": 1594 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3588 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4056 }, "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_sequence": 3589 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3581 }, "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_sequence": 3868 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3582 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3586 }, "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_sequence": 3587 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3612 }, "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_sequence": 3611 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3341 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2060 }, "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_sequence": 1404 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "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_sequence": 1390 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "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, "tippecanoe:retain_points_multiplier_sequence": 874 }, "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_sequence": 1386 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "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_sequence": 2075 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 900 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1837 }, "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_sequence": 3338 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3337 }, "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_sequence": 3343 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3342 }, "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, "tippecanoe:retain_points_multiplier_sequence": 148 }, "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_sequence": 149 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1556 }, "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_sequence": 1557 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "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_sequence": 2082 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "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_sequence": 4212 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "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_sequence": 3344 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1575 }, "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_sequence": 3741 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3339 }, "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_sequence": 3336 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 914 }, "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_sequence": 3756 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3177 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "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_sequence": 1589 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1590 }, "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_sequence": 3178 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 877 }, "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, "tippecanoe:retain_points_multiplier_sequence": 878 }, "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_sequence": 3202 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3201 }, "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_sequence": 654 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3019 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3018 }, "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_sequence": 2994 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3020 }, "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_sequence": 655 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "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_sequence": 939 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1769 }, "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_sequence": 1768 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 938 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3988 }, "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_sequence": 1214 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "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_sequence": 1215 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3015 }, "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_sequence": 3016 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "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_sequence": 4166 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "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_sequence": 2997 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "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_sequence": 616 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "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_sequence": 1799 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "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_sequence": 1266 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "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_sequence": 1268 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "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_sequence": 617 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "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, "tippecanoe:retain_points_multiplier_sequence": 131 }, "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_sequence": 937 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "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_sequence": 620 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "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_sequence": 619 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "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_sequence": 4314 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4304 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "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_sequence": 1267 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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_sequence": 130 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4313 }, "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_sequence": 1204 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "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_sequence": 1203 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1724 }, "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_sequence": 2242 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2243 }, "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_sequence": 4002 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2135 }, "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_sequence": 2137 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2238 }, "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_sequence": 630 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "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, "tippecanoe:retain_points_multiplier_sequence": 621 }, "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_sequence": 622 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2131 }, "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_sequence": 2132 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4255 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4254 }, "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_sequence": 623 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "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_sequence": 3922 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3921 }, "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_sequence": 624 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "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_sequence": 626 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "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, "tippecanoe:retain_points_multiplier_sequence": 628 }, "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_sequence": 631 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "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_sequence": 2128 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3904 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3923 }, "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_sequence": 2127 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3925 }, "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_sequence": 2125 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3924 }, "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_sequence": 1263 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "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_sequence": 2175 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "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, "tippecanoe:retain_points_multiplier_sequence": 595 }, "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_sequence": 594 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "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_sequence": 1064 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "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_sequence": 604 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "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_sequence": 603 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "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_sequence": 605 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "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_sequence": 1261 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "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, "tippecanoe:retain_points_multiplier_sequence": 607 }, "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_sequence": 598 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "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_sequence": 1062 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "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, "tippecanoe:retain_points_multiplier_sequence": 862 }, "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_sequence": 1061 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "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_sequence": 4406 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "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_sequence": 860 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "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_sequence": 1060 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "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_sequence": 1254 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "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_sequence": 128 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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, "tippecanoe:retain_points_multiplier_sequence": 599 }, "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_sequence": 673 }, "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, "tippecanoe:retain_points_multiplier_sequence": 600 }, "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_sequence": 4348 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "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, "tippecanoe:retain_points_multiplier_sequence": 125 }, "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_sequence": 602 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 601 }, "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_sequence": 1202 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "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_sequence": 1198 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "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_sequence": 4407 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 593 }, "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, "tippecanoe:retain_points_multiplier_sequence": 124 }, "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_sequence": 123 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "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_sequence": 122 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "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, "tippecanoe:retain_points_multiplier_sequence": 120 }, "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_sequence": 4021 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4312 }, "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_sequence": 1696 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4311 }, "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_sequence": 1694 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1695 }, "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_sequence": 547 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "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, "tippecanoe:retain_points_multiplier_sequence": 551 }, "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_sequence": 858 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "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_sequence": 540 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 857 }, "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, "tippecanoe:retain_points_multiplier_sequence": 541 }, "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_sequence": 856 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "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_sequence": 1055 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "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, "tippecanoe:retain_points_multiplier_sequence": 545 }, "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_sequence": 1056 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 549 }, "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_sequence": 1251 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "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, "tippecanoe:retain_points_multiplier_sequence": 550 }, "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_sequence": 1054 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "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_sequence": 1052 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "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_sequence": 854 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 853 }, "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_sequence": 1050 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "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_sequence": 1247 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "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_sequence": 1048 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "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_sequence": 536 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "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_sequence": 538 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "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, "tippecanoe:retain_points_multiplier_sequence": 539 }, "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_sequence": 118 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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_sequence": 116 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "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, "tippecanoe:retain_points_multiplier_sequence": 543 }, "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_sequence": 1692 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 548 }, "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_sequence": 3809 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1693 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "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_sequence": 114 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "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_sequence": 112 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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, "tippecanoe:retain_points_multiplier_sequence": 109 }, "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_sequence": 110 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1691 }, "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_sequence": 1688 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "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_sequence": 1687 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4305 }, "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_sequence": 610 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3377 }, "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_sequence": 3378 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2237 }, "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_sequence": 2235 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "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_sequence": 2233 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "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_sequence": 3379 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3901 }, "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_sequence": 2138 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3380 }, "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_sequence": 3381 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3382 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "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_sequence": 3899 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "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_sequence": 3900 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3385 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3386 }, "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_sequence": 2644 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3387 }, "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_sequence": 3388 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3389 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "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_sequence": 2642 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "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_sequence": 3897 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2122 }, "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_sequence": 3898 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2120 }, "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_sequence": 3895 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2641 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "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_sequence": 2639 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2638 }, "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_sequence": 2637 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2230 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2231 }, "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_sequence": 2228 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2229 }, "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_sequence": 2226 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "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, "tippecanoe:retain_points_multiplier_sequence": 496 }, "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_sequence": 492 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "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_sequence": 2224 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2225 }, "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, "tippecanoe:retain_points_multiplier_sequence": 476 }, "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_sequence": 2222 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "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_sequence": 9 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4333 }, "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_sequence": 3 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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_sequence": 3970 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "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, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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_sequence": 413 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "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_sequence": 3894 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2118 }, "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_sequence": 3896 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2117 }, "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_sequence": 493 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3893 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2116 }, "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_sequence": 494 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "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_sequence": 2636 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2635 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "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_sequence": 2632 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "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_sequence": 2115 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3926 }, "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, "tippecanoe:retain_points_multiplier_sequence": 477 }, "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_sequence": 478 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "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_sequence": 2114 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3891 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4253 }, "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_sequence": 419 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3892 }, "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_sequence": 2113 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "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, "tippecanoe:retain_points_multiplier_sequence": 420 }, "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_sequence": 421 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "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_sequence": 422 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "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, "tippecanoe:retain_points_multiplier_sequence": 481 }, "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_sequence": 498 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "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_sequence": 482 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "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, "tippecanoe:retain_points_multiplier_sequence": 427 }, "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_sequence": 429 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "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_sequence": 2654 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 652 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "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_sequence": 2652 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2653 }, "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_sequence": 634 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "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_sequence": 635 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2650 }, "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_sequence": 636 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "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, "tippecanoe:retain_points_multiplier_sequence": 638 }, "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_sequence": 3053 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "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_sequence": 3130 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3052 }, "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_sequence": 640 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "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_sequence": 3129 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 642 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "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_sequence": 2648 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2647 }, "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_sequence": 2646 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3051 }, "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_sequence": 3050 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3049 }, "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_sequence": 3048 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3047 }, "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, "tippecanoe:retain_points_multiplier_sequence": 643 }, "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_sequence": 644 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "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_sequence": 3472 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3473 }, "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_sequence": 647 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 649 }, "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_sequence": 648 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3669 }, "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, "tippecanoe:retain_points_multiplier_sequence": 653 }, "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_sequence": 650 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3757 }, "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_sequence": 651 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3471 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3470 }, "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_sequence": 3469 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3468 }, "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_sequence": 3467 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3466 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "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_sequence": 3308 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3309 }, "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_sequence": 3991 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3306 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3307 }, "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_sequence": 3304 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3305 }, "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_sequence": 3302 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3303 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4251 }, "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_sequence": 670 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3285 }, "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_sequence": 1932 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3288 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3286 }, "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_sequence": 3287 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "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_sequence": 2048 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2656 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3390 }, "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_sequence": 4405 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3393 }, "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_sequence": 3394 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3395 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3396 }, "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_sequence": 611 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3398 }, "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_sequence": 613 }, "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, "tippecanoe:retain_points_multiplier_sequence": 612 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3128 }, "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_sequence": 3397 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3046 }, "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_sequence": 3044 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3045 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3399 }, "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_sequence": 3400 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3042 }, "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_sequence": 3043 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3041 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3040 }, "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_sequence": 575 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "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_sequence": 3039 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3038 }, "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, "tippecanoe:retain_points_multiplier_sequence": 576 }, "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_sequence": 577 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3403 }, "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_sequence": 3404 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3405 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3475 }, "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_sequence": 3928 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3914 }, "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_sequence": 3474 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3406 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3465 }, "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_sequence": 3464 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3408 }, "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_sequence": 3407 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3409 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3410 }, "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_sequence": 3411 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3412 }, "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_sequence": 3462 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3463 }, "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, "tippecanoe:retain_points_multiplier_sequence": 578 }, "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_sequence": 579 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "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_sequence": 3460 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3461 }, "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, "tippecanoe:retain_points_multiplier_sequence": 581 }, "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_sequence": 582 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3569 }, "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_sequence": 3668 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3036 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3037 }, "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_sequence": 3035 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3034 }, "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_sequence": 3032 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3030 }, "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_sequence": 3031 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "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_sequence": 434 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "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, "tippecanoe:retain_points_multiplier_sequence": 436 }, "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_sequence": 3028 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3029 }, "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_sequence": 3027 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "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, "tippecanoe:retain_points_multiplier_sequence": 437 }, "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_sequence": 438 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "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_sequence": 441 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "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, "tippecanoe:retain_points_multiplier_sequence": 446 }, "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_sequence": 3459 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3458 }, "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_sequence": 3457 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3456 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3455 }, "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_sequence": 573 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3454 }, "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_sequence": 3452 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3453 }, "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, "tippecanoe:retain_points_multiplier_sequence": 448 }, "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_sequence": 3451 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4228 }, "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_sequence": 450 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3301 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3317 }, "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_sequence": 3290 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4386 }, "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_sequence": 3289 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3414 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3413 }, "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_sequence": 3298 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3300 }, "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_sequence": 3299 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3401 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3402 }, "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_sequence": 3391 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3392 }, "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_sequence": 3383 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3384 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3297 }, "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_sequence": 3310 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3314 }, "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_sequence": 3311 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3313 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3318 }, "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_sequence": 3319 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3315 }, "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_sequence": 3316 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3296 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1764 }, "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_sequence": 1765 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3312 }, "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_sequence": 3295 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3293 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3294 }, "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_sequence": 4381 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 823 }, "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_sequence": 3778 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3777 }, "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, "tippecanoe:retain_points_multiplier_sequence": 458 }, "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_sequence": 457 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3994 }, "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_sequence": 459 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4020 }, "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_sequence": 1761 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3779 }, "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_sequence": 3780 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1762 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4382 }, "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_sequence": 4380 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1648 }, "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_sequence": 1647 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "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, "tippecanoe:retain_points_multiplier_sequence": 674 }, "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_sequence": 677 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4363 }, "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_sequence": 822 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "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, "tippecanoe:retain_points_multiplier_sequence": 819 }, "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_sequence": 820 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 818 }, "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_sequence": 460 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3775 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3776 }, "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_sequence": 461 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 817 }, "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_sequence": 1656 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4364 }, "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_sequence": 1654 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2084 }, "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_sequence": 1195 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1733 }, "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, "tippecanoe:retain_points_multiplier_sequence": 851 }, "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_sequence": 852 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "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_sequence": 903 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2839 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "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_sequence": 4023 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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_sequence": 849 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 850 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "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_sequence": 1046 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "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_sequence": 4202 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "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_sequence": 4184 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1700 }, "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_sequence": 2844 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1699 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "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_sequence": 1244 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "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_sequence": 847 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3831 }, "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_sequence": 3949 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "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_sequence": 255 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "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, "tippecanoe:retain_points_multiplier_sequence": 844 }, "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_sequence": 845 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "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_sequence": 1042 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3936 }, "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_sequence": 4261 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3835 }, "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_sequence": 1040 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "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_sequence": 1242 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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_sequence": 136 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "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_sequence": 4299 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2838 }, "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_sequence": 107 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "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_sequence": 1685 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "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_sequence": 2842 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2841 }, "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_sequence": 1682 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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_sequence": 104 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "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, "tippecanoe:retain_points_multiplier_sequence": 102 }, "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_sequence": 256 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4200 }, "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_sequence": 4199 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "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_sequence": 1681 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "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_sequence": 1678 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "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, "tippecanoe:retain_points_multiplier_sequence": 258 }, "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_sequence": 1679 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "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_sequence": 240 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4059 }, "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, "tippecanoe:retain_points_multiplier_sequence": 842 }, "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_sequence": 841 }, "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, "tippecanoe:retain_points_multiplier_sequence": 863 }, "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_sequence": 681 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "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, "tippecanoe:retain_points_multiplier_sequence": 239 }, "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_sequence": 1039 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "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_sequence": 1037 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "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_sequence": 243 }, "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, "tippecanoe:retain_points_multiplier_sequence": 242 }, "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_sequence": 1035 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "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_sequence": 3175 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "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_sequence": 864 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "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_sequence": 1436 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "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_sequence": 870 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 871 }, "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, "tippecanoe:retain_points_multiplier_sequence": 895 }, "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_sequence": 1441 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "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_sequence": 1443 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4027 }, "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_sequence": 1034 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "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_sequence": 4409 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 685 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "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_sequence": 1270 }, "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, "tippecanoe:retain_points_multiplier_sequence": 686 }, "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_sequence": 1708 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "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, "tippecanoe:retain_points_multiplier_sequence": 233 }, "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_sequence": 234 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "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_sequence": 99 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "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, "tippecanoe:retain_points_multiplier_sequence": 235 }, "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_sequence": 101 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 935 }, "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_sequence": 237 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "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_sequence": 4036 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4037 }, "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_sequence": 241 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "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_sequence": 1675 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "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_sequence": 687 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3543 }, "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_sequence": 3565 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3566 }, "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_sequence": 1210 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "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_sequence": 1223 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3331 }, "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_sequence": 1222 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "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_sequence": 3333 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3332 }, "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_sequence": 3334 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "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_sequence": 2218 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2219 }, "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_sequence": 2240 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2133 }, "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_sequence": 1716 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1715 }, "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_sequence": 2216 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2217 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "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_sequence": 2214 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4179 }, "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_sequence": 277 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "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, "tippecanoe:retain_points_multiplier_sequence": 278 }, "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_sequence": 268 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2212 }, "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_sequence": 270 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4241 }, "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_sequence": 4242 }, "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, "tippecanoe:retain_points_multiplier_sequence": 269 }, "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_sequence": 2107 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2108 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3887 }, "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_sequence": 272 }, "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, "tippecanoe:retain_points_multiplier_sequence": 271 }, "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_sequence": 2112 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3890 }, "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, "tippecanoe:retain_points_multiplier_sequence": 330 }, "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_sequence": 4014 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "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_sequence": 2111 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3889 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "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_sequence": 1787 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "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_sequence": 331 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "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, "tippecanoe:retain_points_multiplier_sequence": 332 }, "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_sequence": 2630 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "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_sequence": 319 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3888 }, "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_sequence": 1784 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1785 }, "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_sequence": 1783 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "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, "tippecanoe:retain_points_multiplier_sequence": 273 }, "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_sequence": 3984 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "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_sequence": 3985 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1781 }, "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_sequence": 1780 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "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_sequence": 279 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "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, "tippecanoe:retain_points_multiplier_sequence": 281 }, "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_sequence": 282 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2213 }, "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_sequence": 2210 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2038 }, "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_sequence": 2037 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2105 }, "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_sequence": 2106 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2104 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "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_sequence": 2036 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2035 }, "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_sequence": 2209 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "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_sequence": 4293 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4294 }, "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_sequence": 2239 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2040 }, "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_sequence": 1658 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "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_sequence": 928 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2778 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2779 }, "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_sequence": 2782 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "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_sequence": 1663 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1664 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "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_sequence": 2789 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "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_sequence": 1779 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4068 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3738 }, "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_sequence": 3735 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "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_sequence": 245 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2167 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "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_sequence": 3734 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3733 }, "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_sequence": 3737 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3736 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3732 }, "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_sequence": 3739 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2711 }, "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_sequence": 1033 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "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, "tippecanoe:retain_points_multiplier_sequence": 913 }, "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_sequence": 1442 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "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_sequence": 1433 }, "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, "tippecanoe:retain_points_multiplier_sequence": 892 }, "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, "tippecanoe:retain_points_multiplier_sequence": 891 }, "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_sequence": 3731 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "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_sequence": 1431 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "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_sequence": 1707 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "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_sequence": 1273 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3200 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "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_sequence": 908 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 909 }, "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_sequence": 2983 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2982 }, "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_sequence": 1438 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "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_sequence": 2985 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2984 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3439 }, "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_sequence": 865 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 866 }, "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_sequence": 3419 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3420 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "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_sequence": 1698 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2600 }, "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_sequence": 1702 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "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_sequence": 1703 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "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_sequence": 3561 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3562 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3548 }, "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_sequence": 3549 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3564 }, "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_sequence": 3563 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "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_sequence": 1220 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4186 }, "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_sequence": 1221 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3246 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "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_sequence": 1923 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4219 }, "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_sequence": 1906 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1905 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1903 }, "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_sequence": 1904 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "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_sequence": 3558 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3559 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2609 }, "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_sequence": 2599 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3551 }, "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_sequence": 2598 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2596 }, "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_sequence": 1216 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4308 }, "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_sequence": 2597 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3550 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3557 }, "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_sequence": 3556 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4310 }, "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_sequence": 3832 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4306 }, "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_sequence": 4318 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4317 }, "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_sequence": 1893 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1894 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "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_sequence": 2605 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1917 }, "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_sequence": 1918 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "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_sequence": 1902 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1901 }, "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_sequence": 1916 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "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, "tippecanoe:retain_points_multiplier_sequence": 875 }, "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_sequence": 1387 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "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_sequence": 1385 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1411 }, "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_sequence": 3423 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3424 }, "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_sequence": 3442 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3441 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "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_sequence": 1709 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3546 }, "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_sequence": 1275 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "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_sequence": 1399 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "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_sequence": 1393 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "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_sequence": 1446 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "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_sequence": 1463 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3443 }, "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_sequence": 3444 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "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_sequence": 1587 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3425 }, "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_sequence": 3426 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1592 }, "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_sequence": 1277 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1566 }, "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_sequence": 1567 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "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_sequence": 1460 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1585 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "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_sequence": 1563 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "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_sequence": 1448 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1593 }, "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_sequence": 1565 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3544 }, "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_sequence": 3545 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2299 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2298 }, "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_sequence": 3547 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2301 }, "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_sequence": 2300 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4309 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2304 }, "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_sequence": 1405 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2303 }, "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_sequence": 1406 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "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_sequence": 1402 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "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_sequence": 1896 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1859 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1856 }, "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_sequence": 1897 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1898 }, "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_sequence": 1907 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "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_sequence": 1409 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "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_sequence": 1866 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "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_sequence": 1921 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1922 }, "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_sequence": 1919 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "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_sequence": 1580 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "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_sequence": 1927 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "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_sequence": 1401 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1867 }, "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_sequence": 1877 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "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_sequence": 1878 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3247 }, "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_sequence": 3335 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3865 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1662 }, "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_sequence": 3330 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1864 }, "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_sequence": 1865 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "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_sequence": 1863 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1862 }, "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_sequence": 1094 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "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, "tippecanoe:retain_points_multiplier_sequence": 930 }, "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_sequence": 3328 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "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_sequence": 3329 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2786 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "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_sequence": 2784 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2785 }, "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_sequence": 4045 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "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, "tippecanoe:retain_points_multiplier_sequence": 925 }, "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_sequence": 926 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "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_sequence": 2780 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2781 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "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_sequence": 1093 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "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_sequence": 1085 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "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, "tippecanoe:retain_points_multiplier_sequence": 698 }, "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_sequence": 1873 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2603 }, "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_sequence": 2602 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "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_sequence": 1074 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1659 }, "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_sequence": 4058 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1660 }, "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, "tippecanoe:retain_points_multiplier_sequence": 694 }, "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_sequence": 2604 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1872 }, "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_sequence": 1874 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "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_sequence": 2595 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3841 }, "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_sequence": 1069 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "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_sequence": 1078 }, "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, "tippecanoe:retain_points_multiplier_sequence": 696 }, "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_sequence": 692 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 697 }, "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, "tippecanoe:retain_points_multiplier_sequence": 691 }, "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_sequence": 4003 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "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_sequence": 3630 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3629 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3115 }, "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_sequence": 3116 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3123 }, "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_sequence": 3124 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3122 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3121 }, "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_sequence": 1083 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "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_sequence": 1088 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "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_sequence": 362 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "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_sequence": 364 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "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_sequence": 1073 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "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_sequence": 1071 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "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_sequence": 3119 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3120 }, "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_sequence": 1164 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "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_sequence": 1154 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "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_sequence": 1172 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "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_sequence": 382 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "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_sequence": 394 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "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_sequence": 2554 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "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_sequence": 1155 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "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_sequence": 1176 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "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_sequence": 1156 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "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, "tippecanoe:retain_points_multiplier_sequence": 837 }, "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_sequence": 836 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 838 }, "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_sequence": 2836 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "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, "tippecanoe:retain_points_multiplier_sequence": 840 }, "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_sequence": 4070 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "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_sequence": 310 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3117 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3125 }, "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_sequence": 1165 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "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_sequence": 1312 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "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, "tippecanoe:retain_points_multiplier_sequence": 313 }, "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_sequence": 314 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "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_sequence": 1290 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4029 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3883 }, "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_sequence": 1425 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4078 }, "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_sequence": 315 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "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_sequence": 1292 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "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_sequence": 2555 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "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_sequence": 2556 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4030 }, "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_sequence": 1316 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "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_sequence": 366 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2577 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2545 }, "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_sequence": 2578 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "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_sequence": 1168 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "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_sequence": 390 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "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_sequence": 1508 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1500 }, "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, "tippecanoe:retain_points_multiplier_sequence": 387 }, "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_sequence": 384 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1501 }, "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_sequence": 1842 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1947 }, "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_sequence": 467 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1502 }, "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_sequence": 1503 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1504 }, "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, "tippecanoe:retain_points_multiplier_sequence": 475 }, "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_sequence": 1421 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "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_sequence": 1506 }, "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, "tippecanoe:retain_points_multiplier_sequence": 380 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "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_sequence": 1297 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "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_sequence": 1298 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "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_sequence": 396 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "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_sequence": 466 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "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_sequence": 1302 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "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_sequence": 1305 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "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, "tippecanoe:retain_points_multiplier_sequence": 336 }, "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_sequence": 320 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "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_sequence": 3024 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3025 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4225 }, "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_sequence": 4224 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "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_sequence": 359 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "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, "tippecanoe:retain_points_multiplier_sequence": 361 }, "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_sequence": 3324 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "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_sequence": 304 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3323 }, "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, "tippecanoe:retain_points_multiplier_sequence": 305 }, "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_sequence": 3021 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3054 }, "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_sequence": 2718 }, "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, "tippecanoe:retain_points_multiplier_sequence": 287 }, "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, "tippecanoe:retain_points_multiplier_sequence": 283 }, "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_sequence": 2717 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "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_sequence": 288 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "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, "tippecanoe:retain_points_multiplier_sequence": 290 }, "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_sequence": 3057 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3056 }, "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_sequence": 3022 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3055 }, "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, "tippecanoe:retain_points_multiplier_sequence": 447 }, "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_sequence": 3450 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3449 }, "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_sequence": 3448 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4236 }, "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_sequence": 324 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "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_sequence": 306 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "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, "tippecanoe:retain_points_multiplier_sequence": 326 }, "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_sequence": 325 }, "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, "tippecanoe:retain_points_multiplier_sequence": 309 }, "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_sequence": 452 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "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, "tippecanoe:retain_points_multiplier_sequence": 453 }, "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_sequence": 454 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3724 }, "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_sequence": 327 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3571 }, "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_sequence": 3570 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3572 }, "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_sequence": 4231 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4005 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3578 }, "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_sequence": 3575 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3728 }, "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_sequence": 3576 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3870 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3573 }, "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_sequence": 3574 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4329 }, "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_sequence": 4230 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3726 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3248 }, "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_sequence": 3916 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4330 }, "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_sequence": 3577 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3727 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3722 }, "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_sequence": 4066 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3929 }, "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_sequence": 3721 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3723 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3729 }, "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_sequence": 3730 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3670 }, "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_sequence": 3671 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3942 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2899 }, "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_sequence": 1804 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2157 }, "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_sequence": 3818 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "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_sequence": 1031 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "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_sequence": 1032 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4041 }, "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_sequence": 2159 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4042 }, "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_sequence": 1537 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2160 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "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_sequence": 10 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4040 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4043 }, "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_sequence": 2158 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "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_sequence": 2246 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2170 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3758 }, "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_sequence": 1802 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "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_sequence": 3068 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3759 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3760 }, "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_sequence": 3761 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3764 }, "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_sequence": 3765 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3002 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3006 }, "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_sequence": 2902 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3003 }, "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_sequence": 2425 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "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_sequence": 2426 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2423 }, "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_sequence": 2424 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2164 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "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_sequence": 3008 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3004 }, "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_sequence": 2169 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2168 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2999 }, "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_sequence": 3000 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2901 }, "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_sequence": 11 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3292 }, "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_sequence": 4235 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "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_sequence": 443 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3291 }, "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, "tippecanoe:retain_points_multiplier_sequence": 431 }, "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_sequence": 4229 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "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_sequence": 3108 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3109 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4376 }, "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_sequence": 3320 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4122 }, "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_sequence": 3321 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3353 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3111 }, "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_sequence": 3110 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2055 }, "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_sequence": 3725 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3989 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3352 }, "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_sequence": 3913 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3917 }, "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_sequence": 408 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3104 }, "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_sequence": 409 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1510 }, "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_sequence": 3105 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2054 }, "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_sequence": 3918 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2053 }, "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_sequence": 3993 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2683 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3358 }, "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_sequence": 3357 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3355 }, "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_sequence": 3356 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3354 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3241 }, "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_sequence": 3240 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4165 }, "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_sequence": 2698 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3909 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2697 }, "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_sequence": 3908 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2671 }, "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_sequence": 2670 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4175 }, "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, "tippecanoe:retain_points_multiplier_sequence": 456 }, "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_sequence": 4176 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "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_sequence": 406 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4008 }, "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_sequence": 4009 }, "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_sequence": 3874 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "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_sequence": 6 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3875 }, "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, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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_sequence": 412 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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_sequence": 411 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1952 }, "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_sequence": 1194 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4240 }, "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_sequence": 407 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 924 }, "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, "tippecanoe:retain_points_multiplier_sequence": 405 }, "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_sequence": 1953 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1950 }, "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_sequence": 720 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "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_sequence": 2677 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3907 }, "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_sequence": 2700 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4085 }, "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_sequence": 1235 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4086 }, "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_sequence": 3980 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2356 }, "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_sequence": 2357 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2429 }, "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_sequence": 3814 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3812 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3813 }, "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_sequence": 3811 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2350 }, "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_sequence": 2344 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2355 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3810 }, "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_sequence": 3815 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2868 }, "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_sequence": 2858 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "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_sequence": 2863 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "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_sequence": 2352 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "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_sequence": 3910 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2699 }, "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_sequence": 2679 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2684 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3905 }, "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_sequence": 2678 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "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_sequence": 1232 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "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_sequence": 3979 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "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_sequence": 1826 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3906 }, "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_sequence": 2689 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "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_sequence": 2865 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "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_sequence": 2669 }, "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_sequence": 4087 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2685 }, "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_sequence": 3978 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1832 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1828 }, "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_sequence": 3977 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2851 }, "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_sequence": 2852 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "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_sequence": 4026 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "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_sequence": 1825 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1831 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "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_sequence": 2715 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2870 }, "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_sequence": 3282 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3284 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "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_sequence": 3762 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3009 }, "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_sequence": 3763 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3511 }, "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_sequence": 2725 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3283 }, "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_sequence": 3001 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2973 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "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_sequence": 1196 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2972 }, "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_sequence": 1170 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "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_sequence": 3836 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 741 }, "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_sequence": 1162 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1846 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1847 }, "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_sequence": 2896 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "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_sequence": 2903 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "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_sequence": 742 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "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_sequence": 4292 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3981 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2898 }, "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_sequence": 2900 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2897 }, "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_sequence": 1851 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "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_sequence": 4011 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4012 }, "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_sequence": 1427 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3503 }, "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_sequence": 3499 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "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_sequence": 3510 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3507 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3506 }, "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_sequence": 3512 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3114 }, "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_sequence": 3513 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2365 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2368 }, "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_sequence": 2367 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3113 }, "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_sequence": 4067 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3112 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2369 }, "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_sequence": 2370 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "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_sequence": 2721 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3505 }, "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_sequence": 3504 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3498 }, "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_sequence": 3497 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3496 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3509 }, "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_sequence": 3493 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3492 }, "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_sequence": 2724 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2723 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "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_sequence": 1845 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1948 }, "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_sequence": 1657 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1848 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "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_sequence": 1949 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "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_sequence": 556 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1507 }, "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, "tippecanoe:retain_points_multiplier_sequence": 500 }, "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_sequence": 1420 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "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_sequence": 1850 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1426 }, "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_sequence": 1428 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "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_sequence": 499 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "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, "tippecanoe:retain_points_multiplier_sequence": 514 }, "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_sequence": 515 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "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_sequence": 1349 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "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_sequence": 1306 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "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_sequence": 1314 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "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_sequence": 1308 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "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_sequence": 4038 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "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_sequence": 1310 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "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_sequence": 558 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "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_sequence": 1352 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "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_sequence": 1361 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "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_sequence": 1354 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "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_sequence": 1376 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4053 }, "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_sequence": 562 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "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_sequence": 568 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "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_sequence": 4028 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "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_sequence": 1356 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "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_sequence": 1341 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "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_sequence": 1342 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "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_sequence": 1345 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "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_sequence": 1340 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "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_sequence": 1370 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "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_sequence": 664 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "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_sequence": 1359 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "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_sequence": 1382 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "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_sequence": 663 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 662 }, "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_sequence": 1539 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 660 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "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_sequence": 2525 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3501 }, "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_sequence": 1604 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1601 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1602 }, "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_sequence": 4193 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "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_sequence": 2354 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2349 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2348 }, "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_sequence": 4094 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1737 }, "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_sequence": 1736 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2816 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2815 }, "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_sequence": 2085 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "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_sequence": 2346 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1603 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "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_sequence": 1599 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "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_sequence": 3500 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3502 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3495 }, "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_sequence": 3494 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3515 }, "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_sequence": 3508 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3514 }, "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_sequence": 2340 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "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_sequence": 2341 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2820 }, "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_sequence": 2813 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2680 }, "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_sequence": 2818 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2814 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "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_sequence": 2693 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3852 }, "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_sequence": 2675 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2676 }, "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_sequence": 2681 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1829 }, "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_sequence": 2360 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1955 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1956 }, "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_sequence": 2361 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "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_sequence": 1806 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "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_sequence": 2205 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2206 }, "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_sequence": 4378 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2672 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2695 }, "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_sequence": 3157 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3859 }, "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_sequence": 3156 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "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_sequence": 1742 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "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_sequence": 3946 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2362 }, "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_sequence": 60 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2363 }, "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_sequence": 59 }, "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, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3143 }, "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_sequence": 4353 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3153 }, "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_sequence": 1741 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1819 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3146 }, "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_sequence": 3912 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3145 }, "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_sequence": 3152 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1739 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "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_sequence": 3154 }, "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, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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_sequence": 52 }, "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, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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_sequence": 3953 }, "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_sequence": 1821 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "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_sequence": 3215 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3954 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4301 }, "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_sequence": 3144 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3945 }, "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_sequence": 4300 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2694 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3159 }, "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_sequence": 3158 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3860 }, "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_sequence": 2696 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1805 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1746 }, "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_sequence": 3983 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "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_sequence": 1744 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "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, "tippecanoe:retain_points_multiplier_sequence": 724 }, "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_sequence": 2338 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2336 }, "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_sequence": 2334 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2339 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3861 }, "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_sequence": 3167 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "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_sequence": 3862 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3155 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2337 }, "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_sequence": 1009 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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_sequence": 2335 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "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, "tippecanoe:retain_points_multiplier_sequence": 729 }, "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_sequence": 728 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "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_sequence": 1365 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "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, "tippecanoe:retain_points_multiplier_sequence": 980 }, "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_sequence": 1364 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "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_sequence": 1363 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 725 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1732 }, "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_sequence": 1731 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "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_sequence": 3249 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3250 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3147 }, "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_sequence": 3171 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3864 }, "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_sequence": 3169 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3170 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3863 }, "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_sequence": 3168 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3164 }, "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_sequence": 2690 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2691 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4260 }, "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_sequence": 2673 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "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_sequence": 3877 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2508 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "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_sequence": 2502 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "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_sequence": 4322 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2803 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2804 }, "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_sequence": 2507 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "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_sequence": 46 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "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_sequence": 2687 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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_sequence": 2509 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2496 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "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_sequence": 1534 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "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_sequence": 794 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2515 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "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_sequence": 2810 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2809 }, "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_sequence": 2802 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2801 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "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_sequence": 156 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "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_sequence": 2002 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "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_sequence": 1979 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "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_sequence": 15 }, "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, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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_sequence": 1997 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "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_sequence": 2372 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2089 }, "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_sequence": 2098 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2374 }, "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_sequence": 1095 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2375 }, "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_sequence": 2088 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4298 }, "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_sequence": 2934 }, "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, "tippecanoe:retain_points_multiplier_sequence": 155 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2380 }, "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_sequence": 2381 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3943 }, "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_sequence": 158 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3360 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "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_sequence": 3854 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "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_sequence": 2954 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2933 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "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_sequence": 2384 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 959 }, "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_sequence": 2171 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "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_sequence": 962 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 963 }, "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_sequence": 957 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "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, "tippecanoe:retain_points_multiplier_sequence": 955 }, "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_sequence": 956 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "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_sequence": 2195 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3605 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3604 }, "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_sequence": 4374 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4362 }, "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_sequence": 3591 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3590 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3653 }, "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_sequence": 3652 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3651 }, "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_sequence": 2386 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4183 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4373 }, "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_sequence": 3639 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4289 }, "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_sequence": 2382 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2383 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2880 }, "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_sequence": 4194 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3634 }, "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_sequence": 968 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3635 }, "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, "tippecanoe:retain_points_multiplier_sequence": 969 }, "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_sequence": 3633 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2379 }, "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_sequence": 2875 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2876 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2878 }, "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_sequence": 2879 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3642 }, "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_sequence": 3643 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3619 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3620 }, "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_sequence": 3665 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3666 }, "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_sequence": 2891 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3613 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "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_sequence": 3614 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2877 }, "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_sequence": 2893 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2058 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2069 }, "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_sequence": 2071 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2063 }, "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_sequence": 3743 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3740 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3173 }, "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_sequence": 3748 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3187 }, "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_sequence": 3188 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3174 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3191 }, "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_sequence": 3192 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3667 }, "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_sequence": 2062 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3742 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3631 }, "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_sequence": 3658 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "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_sequence": 4007 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2750 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2871 }, "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_sequence": 2872 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "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_sequence": 2741 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3646 }, "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_sequence": 2080 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3647 }, "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_sequence": 2079 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3755 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3636 }, "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_sequence": 3987 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "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_sequence": 2072 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3751 }, "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_sequence": 3180 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1823 }, "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_sequence": 1014 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3179 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "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_sequence": 4387 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3199 }, "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_sequence": 3661 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3632 }, "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, "tippecanoe:retain_points_multiplier_sequence": 919 }, "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_sequence": 2888 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "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_sequence": 3193 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2887 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3935 }, "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_sequence": 2874 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 905 }, "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_sequence": 3659 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4385 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1976 }, "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_sequence": 1975 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1983 }, "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_sequence": 1982 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1994 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "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_sequence": 1101 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3477 }, "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_sequence": 3478 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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_sequence": 18 }, "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_sequence": 27 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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_sequence": 1102 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1989 }, "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_sequence": 1986 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3600 }, "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_sequence": 3601 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3594 }, "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_sequence": 2004 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2005 }, "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_sequence": 3595 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1991 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "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_sequence": 2007 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "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_sequence": 3602 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3603 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3597 }, "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_sequence": 3596 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3476 }, "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_sequence": 3480 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3479 }, "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_sequence": 1099 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "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_sequence": 3966 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "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_sequence": 2274 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2275 }, "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_sequence": 1109 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2943 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2944 }, "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_sequence": 2949 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "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_sequence": 1100 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3369 }, "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_sequence": 3618 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3617 }, "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_sequence": 2273 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2272 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3608 }, "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_sequence": 2283 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3607 }, "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_sequence": 2282 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2277 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2276 }, "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_sequence": 1113 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "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_sequence": 3585 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3583 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3584 }, "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_sequence": 2285 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "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_sequence": 2270 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2735 }, "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_sequence": 2734 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1977 }, "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_sequence": 1978 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1999 }, "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_sequence": 2729 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "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_sequence": 2065 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2067 }, "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_sequence": 3746 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "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_sequence": 1992 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3744 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "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_sequence": 2737 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2068 }, "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_sequence": 1792 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "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_sequence": 3747 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1798 }, "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_sequence": 1021 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1790 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3185 }, "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_sequence": 2873 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "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_sequence": 889 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 890 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4384 }, "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_sequence": 2883 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2884 }, "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_sequence": 3182 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "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_sequence": 883 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 884 }, "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_sequence": 1796 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3186 }, "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, "tippecanoe:retain_points_multiplier_sequence": 894 }, "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_sequence": 893 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "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_sequence": 2000 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3428 }, "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_sequence": 1794 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "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_sequence": 3432 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2731 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "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_sequence": 2066 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "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_sequence": 2747 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2078 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3745 }, "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_sequence": 1018 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3754 }, "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_sequence": 1028 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2739 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "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_sequence": 2738 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2280 }, "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_sequence": 2278 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2070 }, "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_sequence": 21 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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_sequence": 2744 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2743 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "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_sequence": 3752 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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_sequence": 32 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3750 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3749 }, "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_sequence": 2286 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3197 }, "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_sequence": 1022 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3183 }, "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_sequence": 885 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "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_sequence": 918 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "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, "tippecanoe:retain_points_multiplier_sequence": 833 }, "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_sequence": 1797 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3429 }, "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_sequence": 2101 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 917 }, "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, "tippecanoe:retain_points_multiplier_sequence": 896 }, "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_sequence": 897 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3446 }, "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_sequence": 3435 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4226 }, "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, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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_sequence": 2376 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "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_sequence": 1753 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3884 }, "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_sequence": 1472 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4047 }, "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_sequence": 2200 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "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_sequence": 3367 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3368 }, "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_sequence": 3365 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2192 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "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_sequence": 3486 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3487 }, "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_sequence": 3489 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3490 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "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_sequence": 3488 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3485 }, "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_sequence": 3375 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3616 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3363 }, "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_sequence": 3362 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "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_sequence": 1111 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3593 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3592 }, "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_sequence": 3371 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2746 }, "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_sequence": 3969 }, "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, "tippecanoe:retain_points_multiplier_sequence": 150 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3598 }, "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_sequence": 3599 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3609 }, "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_sequence": 3610 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "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_sequence": 146 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2728 }, "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_sequence": 1106 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "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_sequence": 2733 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1476 }, "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_sequence": 4044 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1494 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3207 }, "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_sequence": 3206 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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_sequence": 3212 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "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_sequence": 1483 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1484 }, "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_sequence": 95 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3213 }, "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, "tippecanoe:retain_points_multiplier_sequence": 147 }, "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_sequence": 2740 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3830 }, "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_sequence": 2745 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3208 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "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_sequence": 92 }, "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, "tippecanoe:retain_points_multiplier_sequence": 143 }, "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_sequence": 96 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4320 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4352 }, "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_sequence": 2965 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3370 }, "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_sequence": 3376 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2940 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "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_sequence": 3194 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2962 }, "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_sequence": 2961 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3361 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "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_sequence": 3372 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3198 }, "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_sequence": 1752 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "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_sequence": 1750 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "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_sequence": 3181 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "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_sequence": 3184 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1755 }, "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_sequence": 1749 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 887 }, "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, "tippecanoe:retain_points_multiplier_sequence": 888 }, "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_sequence": 906 }, "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, "tippecanoe:retain_points_multiplier_sequence": 907 }, "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_sequence": 2938 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "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, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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_sequence": 13 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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_sequence": 23 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "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_sequence": 915 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "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_sequence": 2936 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2935 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3438 }, "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_sequence": 2964 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2963 }, "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_sequence": 2959 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2960 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3374 }, "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_sequence": 3373 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3445 }, "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_sequence": 2910 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 882 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "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_sequence": 3430 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4287 }, "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_sequence": 1115 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3753 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3214 }, "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_sequence": 1023 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3190 }, "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_sequence": 3189 }, "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, "tippecanoe:retain_points_multiplier_sequence": 898 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3205 }, "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_sequence": 3196 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "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_sequence": 1026 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3210 }, "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_sequence": 3172 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3203 }, "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_sequence": 911 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3204 }, "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, "tippecanoe:retain_points_multiplier_sequence": 910 }, "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_sequence": 4173 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "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_sequence": 868 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "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_sequence": 2835 }, "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, "tippecanoe:retain_points_multiplier_sequence": 835 }, "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_sequence": 1756 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4288 }, "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_sequence": 2575 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2576 }, "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_sequence": 3209 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2832 }, "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_sequence": 4063 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3440 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3211 }, "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_sequence": 4209 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "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_sequence": 3972 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2548 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4039 }, "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_sequence": 2529 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2530 }, "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_sequence": 0 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2580 }, "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, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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_sequence": 3483 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "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_sequence": 4208 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "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_sequence": 145 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1474 }, "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_sequence": 1493 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "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_sequence": 1491 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "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_sequence": 3176 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "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, "tippecanoe:retain_points_multiplier_sequence": 872 }, "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_sequence": 879 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2834 }, "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_sequence": 873 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4222 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "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_sequence": 1327 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4057 }, "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_sequence": 1422 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2573 }, "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_sequence": 2549 }, "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, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2560 }, "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_sequence": 2561 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1498 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "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_sequence": 1490 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "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_sequence": 3838 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4046 }, "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, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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_sequence": 40 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3968 }, "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_sequence": 3327 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4010 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2584 }, "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_sequence": 56 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "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_sequence": 61 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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_sequence": 4024 }, "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_sequence": 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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2250 }, "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_sequence": 3351 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3347 }, "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, "tippecanoe:retain_points_multiplier_sequence": 51 }, "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_sequence": 53 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1670 }, "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_sequence": 4403 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3346 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "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_sequence": 4220 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3345 }, "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_sequence": 3350 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3348 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3349 }, "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_sequence": 4377 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4280 }, "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_sequence": 4401 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2562 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "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_sequence": 152 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "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_sequence": 2497 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4169 }, "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_sequence": 3484 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3481 }, "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_sequence": 69 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4402 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "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_sequence": 2504 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4334 }, "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_sequence": 2488 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "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_sequence": 4238 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3482 }, "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_sequence": 4250 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2247 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4247 }, "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_sequence": 1972 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "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_sequence": 1668 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4350 }, "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_sequence": 151 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4237 }, "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_sequence": 4239 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4246 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "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_sequence": 1488 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "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_sequence": 4055 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2523 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "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_sequence": 1973 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4284 }, "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_sequence": 1974 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1971 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "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_sequence": 1487 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "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_sequence": 4245 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4398 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1477 }, "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_sequence": 4390 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "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_sequence": 1480 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "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_sequence": 4368 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4369 }, "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_sequence": 3938 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4135 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "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_sequence": 703 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "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_sequence": 1854 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4216 }, "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_sequence": 4217 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "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_sequence": 704 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3829 }, "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, "tippecanoe:retain_points_multiplier_sequence": 284 }, "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_sequence": 4218 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4233 }, "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_sequence": 285 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 712 }, "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, "tippecanoe:retain_points_multiplier_sequence": 711 }, "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_sequence": 286 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4215 }, "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_sequence": 707 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3519 }, "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_sequence": 3518 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 921 }, "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_sequence": 4214 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 706 }, "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, "tippecanoe:retain_points_multiplier_sequence": 708 }, "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_sequence": 4213 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 922 }, "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_sequence": 920 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4171 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2329 }, "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_sequence": 4031 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4032 }, "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_sequence": 2328 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4033 }, "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, "tippecanoe:retain_points_multiplier_sequence": 709 }, "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_sequence": 923 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2327 }, "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_sequence": 4034 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2403 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4035 }, "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_sequence": 1940 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "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_sequence": 3421 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3422 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "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_sequence": 1713 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3433 }, "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_sequence": 3434 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3436 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2906 }, "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_sequence": 1287 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "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_sequence": 2908 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "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_sequence": 1456 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "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_sequence": 3427 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3010 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "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_sequence": 3281 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3662 }, "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_sequence": 3447 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3663 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2912 }, "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_sequence": 3660 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "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_sequence": 3641 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3640 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4388 }, "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_sequence": 4319 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2709 }, "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_sequence": 3657 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3656 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4321 }, "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_sequence": 1449 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "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_sequence": 2296 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "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_sequence": 4307 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3637 }, "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_sequence": 3638 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3568 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "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_sequence": 2318 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2306 }, "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_sequence": 2320 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1568 }, "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_sequence": 1569 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "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_sequence": 1572 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1573 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1910 }, "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_sequence": 1930 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "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_sequence": 2313 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2312 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "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_sequence": 1899 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "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_sequence": 2174 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1582 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "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_sequence": 1868 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1570 }, "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_sequence": 4259 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1571 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1869 }, "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_sequence": 1858 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1857 }, "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_sequence": 2295 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "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_sequence": 1838 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "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_sequence": 1540 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1911 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "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_sequence": 2173 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2753 }, "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_sequence": 1875 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4162 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "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_sequence": 4177 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2572 }, "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_sequence": 2752 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4332 }, "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_sequence": 2751 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2563 }, "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_sequence": 3712 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2564 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2330 }, "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_sequence": 2890 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2889 }, "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_sequence": 3437 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2885 }, "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_sequence": 2909 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3431 }, "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_sequence": 1284 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2881 }, "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_sequence": 2707 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "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_sequence": 2904 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3012 }, "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_sequence": 1777 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2702 }, "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_sequence": 1466 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3664 }, "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_sequence": 1461 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "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_sequence": 3560 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3648 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2319 }, "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_sequence": 3649 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "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_sequence": 2316 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "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_sequence": 1772 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "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_sequence": 3554 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1773 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "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_sequence": 3552 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2003 }, "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_sequence": 2311 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1776 }, "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_sequence": 4050 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2310 }, "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_sequence": 2309 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1795 }, "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_sequence": 2905 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "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_sequence": 1791 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3013 }, "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_sequence": 1282 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2099 }, "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_sequence": 1793 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2705 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "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_sequence": 1468 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "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_sequence": 1452 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2911 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1711 }, "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_sequence": 1288 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4265 }, "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_sequence": 2706 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4075 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4062 }, "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_sequence": 1470 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "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_sequence": 1455 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3555 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "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_sequence": 1228 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3553 }, "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_sequence": 4258 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4164 }, "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_sequence": 2547 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2541 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "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_sequence": 3567 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2538 }, "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_sequence": 2586 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4221 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2539 }, "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_sequence": 253 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3644 }, "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_sequence": 1929 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3645 }, "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_sequence": 4180 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3853 }, "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_sequence": 3655 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3654 }, "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_sequence": 3846 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3650 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2587 }, "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_sequence": 42 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4157 }, "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_sequence": 301 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "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_sequence": 4182 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1913 }, "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_sequence": 2571 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2570 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "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_sequence": 4281 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2453 }, "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_sequence": 2583 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4389 }, "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, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3952 }, "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_sequence": 4243 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4244 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3325 }, "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_sequence": 2518 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4061 }, "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_sequence": 2726 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2727 }, "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, "tippecanoe:retain_points_multiplier_sequence": 299 }, "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_sequence": 2455 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2454 }, "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_sequence": 300 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "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, "tippecanoe:retain_points_multiplier_sequence": 298 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "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_sequence": 2542 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4163 }, "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_sequence": 4282 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "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_sequence": 2567 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2450 }, "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, "tippecanoe:retain_points_multiplier_sequence": 265 }, "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_sequence": 2451 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "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_sequence": 2449 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3932 }, "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_sequence": 264 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4285 }, "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_sequence": 1612 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1615 }, "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_sequence": 294 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1614 }, "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_sequence": 295 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "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, "tippecanoe:retain_points_multiplier_sequence": 262 }, "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_sequence": 1889 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1933 }, "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_sequence": 1934 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4392 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "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_sequence": 1424 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "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_sequence": 3951 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3882 }, "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_sequence": 318 }, "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, "tippecanoe:retain_points_multiplier_sequence": 317 }, "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_sequence": 311 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4076 }, "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_sequence": 312 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2551 }, "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_sequence": 2550 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "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_sequence": 2559 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2552 }, "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_sequence": 3881 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "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_sequence": 3322 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2544 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3927 }, "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_sequence": 2582 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "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_sequence": 989 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4404 }, "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, "tippecanoe:retain_points_multiplier_sequence": 990 }, "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_sequence": 3878 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "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_sequence": 341 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "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, "tippecanoe:retain_points_multiplier_sequence": 363 }, "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_sequence": 991 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "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_sequence": 3709 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3708 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3681 }, "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_sequence": 3682 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3683 }, "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_sequence": 343 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3684 }, "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_sequence": 356 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3685 }, "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_sequence": 355 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3686 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3687 }, "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_sequence": 3688 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "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_sequence": 399 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "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, "tippecanoe:retain_points_multiplier_sequence": 377 }, "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_sequence": 378 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3098 }, "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_sequence": 385 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3833 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3099 }, "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_sequence": 3100 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3834 }, "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_sequence": 3106 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3107 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3101 }, "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_sequence": 3102 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 993 }, "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_sequence": 3103 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "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, "tippecanoe:retain_points_multiplier_sequence": 388 }, "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_sequence": 389 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "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_sequence": 3689 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3690 }, "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_sequence": 3691 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3692 }, "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_sequence": 3694 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3693 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3695 }, "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_sequence": 3696 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3697 }, "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_sequence": 3698 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3700 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3699 }, "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_sequence": 2456 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "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_sequence": 2458 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4270 }, "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, "tippecanoe:retain_points_multiplier_sequence": 328 }, "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_sequence": 2459 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "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_sequence": 1617 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2460 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "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_sequence": 349 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2462 }, "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_sequence": 347 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3903 }, "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_sequence": 348 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "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_sequence": 4268 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4279 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4271 }, "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_sequence": 1618 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4052 }, "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_sequence": 353 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1619 }, "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_sequence": 4272 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1620 }, "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_sequence": 296 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "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, "tippecanoe:retain_points_multiplier_sequence": 757 }, "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_sequence": 782 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 783 }, "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_sequence": 1413 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 781 }, "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, "tippecanoe:retain_points_multiplier_sequence": 780 }, "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_sequence": 345 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "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_sequence": 1621 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 759 }, "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, "tippecanoe:retain_points_multiplier_sequence": 758 }, "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_sequence": 338 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "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_sequence": 760 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "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, "tippecanoe:retain_points_multiplier_sequence": 784 }, "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_sequence": 785 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "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_sequence": 2464 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2465 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2466 }, "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_sequence": 2467 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "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_sequence": 4278 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4273 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4277 }, "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_sequence": 2469 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "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_sequence": 2471 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2472 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "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_sequence": 2473 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4274 }, "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_sequence": 4276 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "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_sequence": 4316 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1624 }, "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_sequence": 4315 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 762 }, "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, "tippecanoe:retain_points_multiplier_sequence": 763 }, "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_sequence": 764 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "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_sequence": 766 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "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_sequence": 2945 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1701 }, "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_sequence": 2946 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2955 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2708 }, "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_sequence": 2956 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3998 }, "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_sequence": 2271 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4394 }, "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_sequence": 4393 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4065 }, "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_sequence": 4069 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 656 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4349 }, "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_sequence": 2941 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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_sequence": 30 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4074 }, "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_sequence": 2951 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "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, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "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_sequence": 657 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "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_sequence": 658 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "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_sequence": 3828 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "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_sequence": 3366 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1710 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "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_sequence": 2565 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "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_sequence": 3364 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "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_sequence": 2585 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "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_sequence": 2444 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3995 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2574 }, "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_sequence": 2537 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4267 }, "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_sequence": 4123 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "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_sequence": 230 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "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_sequence": 2446 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2445 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2097 }, "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_sequence": 228 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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_sequence": 1283 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2569 }, "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_sequence": 198 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "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_sequence": 2532 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "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_sequence": 197 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4397 }, "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_sequence": 4178 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "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, "tippecanoe:retain_points_multiplier_sequence": 219 }, "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_sequence": 2439 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2440 }, "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_sequence": 4158 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4159 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1969 }, "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_sequence": 189 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "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_sequence": 3948 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "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, "tippecanoe:retain_points_multiplier_sequence": 218 }, "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_sequence": 226 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3997 }, "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_sequence": 1609 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "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, "tippecanoe:retain_points_multiplier_sequence": 217 }, "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_sequence": 1884 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "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_sequence": 249 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "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_sequence": 244 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "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_sequence": 1887 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1886 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "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_sequence": 263 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "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_sequence": 755 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 756 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3933 }, "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_sequence": 3824 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 754 }, "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_sequence": 260 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4291 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "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_sequence": 227 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4266 }, "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_sequence": 4079 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 753 }, "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, "tippecanoe:retain_points_multiplier_sequence": 752 }, "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_sequence": 4249 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "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_sequence": 254 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3535 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3534 }, "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_sequence": 3532 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3533 }, "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_sequence": 1968 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4207 }, "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, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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_sequence": 4185 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1606 }, "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_sequence": 3840 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4232 }, "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, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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_sequence": 76 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1605 }, "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_sequence": 4399 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "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_sequence": 4395 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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_sequence": 204 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4396 }, "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_sequence": 751 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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_sequence": 74 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3982 }, "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_sequence": 1881 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4400 }, "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_sequence": 1891 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3937 }, "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_sequence": 4174 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "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_sequence": 71 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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_sequence": 4206 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1496 }, "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_sequence": 2150 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2148 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2151 }, "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_sequence": 2149 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4054 }, "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_sequence": 215 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4351 }, "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_sequence": 232 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3530 }, "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_sequence": 3531 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4018 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3527 }, "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_sequence": 222 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3528 }, "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_sequence": 3529 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3825 }, "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, "tippecanoe:retain_points_multiplier_sequence": 221 }, "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_sequence": 224 }, "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, "tippecanoe:retain_points_multiplier_sequence": 223 }, "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_sequence": 2153 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2152 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3958 }, "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_sequence": 4156 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4150 }, "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_sequence": 4121 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3955 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "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_sequence": 4139 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3939 }, "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_sequence": 41 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2155 }, "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_sequence": 176 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3526 }, "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_sequence": 3525 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4134 }, "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, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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_sequence": 214 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4083 }, "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_sequence": 4082 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4113 }, "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, "tippecanoe:retain_points_multiplier_sequence": 213 }, "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_sequence": 84 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4114 }, "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_sequence": 4340 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2930 }, "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_sequence": 2932 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4060 }, "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_sequence": 2913 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "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, "tippecanoe:retain_points_multiplier_sequence": 351 }, "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_sequence": 2915 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "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_sequence": 2916 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2917 }, "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, "tippecanoe:retain_points_multiplier_sequence": 352 }, "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_sequence": 357 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3713 }, "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_sequence": 3720 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3719 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3714 }, "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_sequence": 4290 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "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_sequence": 1415 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3086 }, "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_sequence": 3087 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3072 }, "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_sequence": 3073 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2140 }, "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_sequence": 370 }, "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, "tippecanoe:retain_points_multiplier_sequence": 372 }, "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_sequence": 371 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3075 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3074 }, "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_sequence": 4345 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4336 }, "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_sequence": 1328 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "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, "tippecanoe:retain_points_multiplier_sequence": 368 }, "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_sequence": 4198 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "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_sequence": 1329 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3088 }, "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_sequence": 4344 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4337 }, "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_sequence": 374 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "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_sequence": 1330 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2919 }, "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_sequence": 2918 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2921 }, "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_sequence": 3715 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3716 }, "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_sequence": 2920 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 768 }, "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, "tippecanoe:retain_points_multiplier_sequence": 769 }, "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_sequence": 770 }, "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, "tippecanoe:retain_points_multiplier_sequence": 771 }, "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_sequence": 772 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 773 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2922 }, "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_sequence": 2923 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2924 }, "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_sequence": 4383 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2925 }, "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_sequence": 504 }, "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, "tippecanoe:retain_points_multiplier_sequence": 503 }, "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_sequence": 3717 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3077 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3078 }, "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_sequence": 3718 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "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_sequence": 468 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "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, "tippecanoe:retain_points_multiplier_sequence": 472 }, "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_sequence": 3080 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3079 }, "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_sequence": 3089 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3244 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "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_sequence": 1332 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3245 }, "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_sequence": 3243 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3781 }, "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_sequence": 3081 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "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_sequence": 505 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "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, "tippecanoe:retain_points_multiplier_sequence": 501 }, "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_sequence": 2141 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4004 }, "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_sequence": 502 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3083 }, "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_sequence": 1333 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 931 }, "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_sequence": 485 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3782 }, "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_sequence": 3792 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3791 }, "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_sequence": 1334 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3783 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4343 }, "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_sequence": 4338 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3876 }, "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_sequence": 1117 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "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_sequence": 379 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "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_sequence": 401 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "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, "tippecanoe:retain_points_multiplier_sequence": 397 }, "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_sequence": 398 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4341 }, "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_sequence": 4342 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4339 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3976 }, "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_sequence": 4084 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4081 }, "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_sequence": 4112 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4115 }, "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, "tippecanoe:retain_points_multiplier_sequence": 163 }, "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_sequence": 161 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "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_sequence": 160 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3845 }, "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_sequence": 4111 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4136 }, "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_sequence": 4116 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3962 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3491 }, "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_sequence": 4137 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "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_sequence": 376 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3956 }, "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, "tippecanoe:retain_points_multiplier_sequence": 165 }, "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_sequence": 4203 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "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_sequence": 465 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "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_sequence": 2431 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "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_sequence": 471 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "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_sequence": 473 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3516 }, "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_sequence": 3517 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "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, "tippecanoe:retain_points_multiplier_sequence": 689 }, "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_sequence": 507 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3784 }, "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_sequence": 3788 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3789 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3790 }, "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_sequence": 1116 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4204 }, "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_sequence": 4205 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2434 }, "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_sequence": 2435 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "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_sequence": 2437 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "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_sequence": 1323 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "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_sequence": 3930 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "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, "tippecanoe:retain_points_multiplier_sequence": 166 }, "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_sequence": 167 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3957 }, "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_sequence": 4110 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4117 }, "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_sequence": 487 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "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_sequence": 169 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3973 }, "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, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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_sequence": 4181 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "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_sequence": 483 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4188 }, "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_sequence": 4192 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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_sequence": 171 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4109 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3963 }, "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_sequence": 4118 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "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_sequence": 530 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "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, "tippecanoe:retain_points_multiplier_sequence": 994 }, "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_sequence": 510 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 995 }, "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_sequence": 1001 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "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, "tippecanoe:retain_points_multiplier_sequence": 569 }, "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_sequence": 2623 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "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_sequence": 2625 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2626 }, "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, "tippecanoe:retain_points_multiplier_sequence": 996 }, "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_sequence": 997 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "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_sequence": 517 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "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, "tippecanoe:retain_points_multiplier_sequence": 522 }, "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_sequence": 3702 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "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_sequence": 2628 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2629 }, "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, "tippecanoe:retain_points_multiplier_sequence": 590 }, "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_sequence": 592 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3879 }, "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_sequence": 998 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3880 }, "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_sequence": 591 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "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_sequence": 4077 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3827 }, "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_sequence": 999 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 583 }, "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_sequence": 659 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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, "tippecanoe:retain_points_multiplier_sequence": 723 }, "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_sequence": 976 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 977 }, "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_sequence": 3063 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3806 }, "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, "tippecanoe:retain_points_multiplier_sequence": 979 }, "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_sequence": 978 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 972 }, "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_sequence": 973 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 586 }, "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, "tippecanoe:retain_points_multiplier_sequence": 585 }, "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_sequence": 2480 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "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_sequence": 589 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2493 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "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_sequence": 1145 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "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_sequence": 2482 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 587 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2481 }, "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_sequence": 981 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 982 }, "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_sequence": 975 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4327 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3162 }, "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_sequence": 3160 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3163 }, "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_sequence": 4328 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3161 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "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_sequence": 2486 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "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_sequence": 2500 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3091 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "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_sequence": 1149 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3701 }, "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_sequence": 534 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2475 }, "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_sequence": 526 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "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_sequence": 2476 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3703 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3704 }, "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_sequence": 557 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2477 }, "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_sequence": 533 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4275 }, "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, "tippecanoe:retain_points_multiplier_sequence": 532 }, "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_sequence": 4197 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "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_sequence": 4269 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3705 }, "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_sequence": 3707 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3706 }, "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_sequence": 4234 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4323 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2478 }, "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_sequence": 947 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4210 }, "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_sequence": 2511 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3711 }, "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_sequence": 3710 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4411 }, "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_sequence": 2495 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2522 }, "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, "tippecanoe:retain_points_multiplier_sequence": 948 }, "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_sequence": 519 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "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_sequence": 1627 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4072 }, "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, "tippecanoe:retain_points_multiplier_sequence": 520 }, "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_sequence": 1629 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1630 }, "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_sequence": 566 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1631 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4071 }, "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_sequence": 523 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "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_sequence": 1632 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "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, "tippecanoe:retain_points_multiplier_sequence": 944 }, "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_sequence": 4211 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4324 }, "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_sequence": 1633 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1642 }, "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_sequence": 1644 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "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_sequence": 945 }, "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, "tippecanoe:retain_points_multiplier_sequence": 946 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4326 }, "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_sequence": 940 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "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_sequence": 2479 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "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_sequence": 1135 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "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_sequence": 1133 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3095 }, "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_sequence": 3096 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "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_sequence": 3094 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4227 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "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_sequence": 722 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "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_sequence": 1141 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "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_sequence": 1143 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1635 }, "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_sequence": 1636 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4016 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4015 }, "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_sequence": 1646 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1645 }, "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_sequence": 1640 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "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_sequence": 2661 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "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_sequence": 1136 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3996 }, "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, "tippecanoe:retain_points_multiplier_sequence": 984 }, "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_sequence": 983 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 734 }, "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_sequence": 3359 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "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, "tippecanoe:retain_points_multiplier_sequence": 731 }, "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_sequence": 730 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2483 }, "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_sequence": 733 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2489 }, "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_sequence": 2244 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3097 }, "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_sequence": 2520 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3269 }, "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_sequence": 2517 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2516 }, "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_sequence": 3271 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3270 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3540 }, "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_sequence": 3541 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3266 }, "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_sequence": 4167 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4170 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3259 }, "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_sequence": 2506 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "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_sequence": 2512 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "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_sequence": 1185 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "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_sequence": 3257 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3258 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3542 }, "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_sequence": 3263 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3262 }, "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_sequence": 3986 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "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, "tippecanoe:retain_points_multiplier_sequence": 788 }, "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_sequence": 1535 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "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_sequence": 2808 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2807 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2388 }, "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_sequence": 793 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2797 }, "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_sequence": 2798 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2806 }, "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, "tippecanoe:retain_points_multiplier_sequence": 787 }, "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_sequence": 786 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "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_sequence": 2589 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 791 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2590 }, "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_sequence": 790 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "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_sequence": 2594 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "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, "tippecanoe:retain_points_multiplier_sequence": 795 }, "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_sequence": 2967 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2968 }, "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_sequence": 2812 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2811 }, "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_sequence": 700 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "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_sequence": 713 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "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_sequence": 1547 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1548 }, "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_sequence": 4025 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2966 }, "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, "tippecanoe:retain_points_multiplier_sequence": 47 }, "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_sequence": 44 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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_sequence": 48 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3092 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "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_sequence": 1180 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "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_sequence": 1188 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1531 }, "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_sequence": 3090 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "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_sequence": 1179 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4295 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "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_sequence": 1529 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3839 }, "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_sequence": 666 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3254 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3255 }, "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_sequence": 3273 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3274 }, "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_sequence": 4286 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3992 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "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_sequence": 1532 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "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_sequence": 1641 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1637 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "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_sequence": 1183 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4252 }, "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_sequence": 665 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "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_sequence": 3261 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3260 }, "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_sequence": 1550 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3625 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3252 }, "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_sequence": 3264 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1546 }, "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_sequence": 1545 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "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_sequence": 1541 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "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_sequence": 2261 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2262 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3623 }, "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_sequence": 3624 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3621 }, "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_sequence": 3622 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3627 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3628 }, "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_sequence": 3798 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3800 }, "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_sequence": 3801 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3626 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3805 }, "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_sequence": 3799 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "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_sequence": 2268 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "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, "tippecanoe:retain_points_multiplier_sequence": 774 }, "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_sequence": 775 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "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_sequence": 776 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "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, "tippecanoe:retain_points_multiplier_sequence": 777 }, "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_sequence": 778 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "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_sequence": 529 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2927 }, "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_sequence": 4187 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 559 }, "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_sequence": 2929 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4325 }, "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_sequence": 941 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "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_sequence": 2142 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3084 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2143 }, "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_sequence": 3085 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "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_sequence": 564 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "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, "tippecanoe:retain_points_multiplier_sequence": 807 }, "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_sequence": 3934 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "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_sequence": 739 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 738 }, "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, "tippecanoe:retain_points_multiplier_sequence": 809 }, "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_sequence": 810 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3847 }, "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_sequence": 797 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "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, "tippecanoe:retain_points_multiplier_sequence": 804 }, "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_sequence": 1137 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4073 }, "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_sequence": 798 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 803 }, "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, "tippecanoe:retain_points_multiplier_sequence": 808 }, "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_sequence": 2008 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "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_sequence": 3848 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "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_sequence": 3524 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3521 }, "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_sequence": 3520 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3523 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3522 }, "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_sequence": 2010 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2012 }, "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_sequence": 2011 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2758 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3276 }, "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_sequence": 3786 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3785 }, "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_sequence": 560 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3787 }, "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_sequence": 1122 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "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_sequence": 554 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "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_sequence": 572 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1514 }, "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_sequence": 1513 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "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_sequence": 1325 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "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_sequence": 4190 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "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_sequence": 4049 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1526 }, "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_sequence": 4189 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4191 }, "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, "tippecanoe:retain_points_multiplier_sequence": 173 }, "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_sequence": 179 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "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_sequence": 2096 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2093 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "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_sequence": 2775 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2774 }, "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_sequence": 3275 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2773 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3272 }, "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_sequence": 2772 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "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_sequence": 2830 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "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_sequence": 2770 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1525 }, "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_sequence": 4048 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2091 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "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_sequence": 1524 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1523 }, "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_sequence": 4120 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4107 }, "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_sequence": 3959 }, "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_sequence": 183 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "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_sequence": 3964 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "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, "tippecanoe:retain_points_multiplier_sequence": 187 }, "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_sequence": 2090 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "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_sequence": 2826 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2827 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4128 }, "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_sequence": 4126 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4129 }, "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_sequence": 4125 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "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, "tippecanoe:retain_points_multiplier_sequence": 190 }, "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_sequence": 193 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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_sequence": 4145 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4106 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4155 }, "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_sequence": 1957 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "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_sequence": 4346 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4347 }, "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, "tippecanoe:retain_points_multiplier_sequence": 195 }, "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_sequence": 4127 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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_sequence": 4146 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4154 }, "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_sequence": 800 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "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_sequence": 3278 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3277 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3231 }, "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_sequence": 3256 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 811 }, "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_sequence": 813 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 812 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3253 }, "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_sequence": 3230 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3268 }, "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_sequence": 3267 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3225 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3233 }, "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_sequence": 4391 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4408 }, "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_sequence": 717 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 716 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3251 }, "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_sequence": 3265 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4051 }, "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_sequence": 3280 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3279 }, "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, "tippecanoe:retain_points_multiplier_sequence": 749 }, "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_sequence": 4335 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 748 }, "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_sequence": 802 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3220 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3221 }, "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_sequence": 3223 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3222 }, "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_sequence": 85 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "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_sequence": 2824 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3677 }, "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_sequence": 2831 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2822 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2821 }, "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_sequence": 1942 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1943 }, "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_sequence": 88 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "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_sequence": 3796 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3797 }, "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_sequence": 3804 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3803 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "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_sequence": 1944 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3802 }, "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_sequence": 719 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2254 }, "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_sequence": 2253 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2258 }, "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_sequence": 2256 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2266 }, "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_sequence": 2265 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3239 }, "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_sequence": 3238 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3224 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3228 }, "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_sequence": 3229 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2795 }, "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_sequence": 4355 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2790 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2796 }, "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_sequence": 2792 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2251 }, "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_sequence": 2252 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2255 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3227 }, "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_sequence": 2264 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2263 }, "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_sequence": 3226 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4354 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3234 }, "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_sequence": 3235 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3536 }, "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_sequence": 750 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3539 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3537 }, "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_sequence": 3538 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3069 }, "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_sequence": 3070 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3795 }, "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, "tippecanoe:retain_points_multiplier_sequence": 212 }, "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_sequence": 4331 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2768 }, "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_sequence": 2402 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2401 }, "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_sequence": 3851 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3850 }, "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_sequence": 200 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4147 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4153 }, "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_sequence": 4104 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "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_sequence": 202 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2754 }, "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_sequence": 3961 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "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_sequence": 175 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4148 }, "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_sequence": 4103 }, "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_sequence": 4152 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3131 }, "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_sequence": 205 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3132 }, "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, "tippecanoe:retain_points_multiplier_sequence": 199 }, "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_sequence": 3849 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "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_sequence": 3137 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4130 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3136 }, "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_sequence": 4124 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "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_sequence": 207 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3793 }, "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_sequence": 3794 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3965 }, "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_sequence": 4101 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4100 }, "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, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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_sequence": 210 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3676 }, "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_sequence": 211 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3674 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3675 }, "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_sequence": 2793 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4160 }, "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_sequence": 177 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4064 }, "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_sequence": 4098 }, "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_sequence": 4099 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "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_sequence": 181 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4080 }, "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_sequence": 2794 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4356 }, "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_sequence": 2791 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "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, "tippecanoe:retain_points_multiplier_sequence": 191 }, "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_sequence": 4149 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4096 }, "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_sequence": 4131 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4151 }, "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, "tippecanoe:retain_points_multiplier_sequence": 194 }, "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_sequence": 3960 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4097 }, "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_sequence": 4102 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1727 }, "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_sequence": 4357 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4161 }, "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_sequence": 1598 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "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_sequence": 3673 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3672 }, "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_sequence": 1596 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1729 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "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_sequence": 1892 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4195 }, "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_sequence": 4201 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4196 }, "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_sequence": 33 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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_sequence": 36 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4172 }, "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_sequence": 174 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4133 }, "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_sequence": 4119 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4108 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4132 }, "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_sequence": 3974 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "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_sequence": 1318 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4168 }, "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_sequence": 1519 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "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_sequence": 2418 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "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_sequence": 4256 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2415 }, "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_sequence": 2420 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3885 }, "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_sequence": 1518 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1965 }, "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_sequence": 1964 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 934 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "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_sequence": 1527 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3990 }, "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_sequence": 1528 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1962 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1963 }, "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_sequence": 1538 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1516 }, "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_sequence": 2145 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4303 }, "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_sequence": 2412 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1517 }, "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_sequence": 2411 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "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_sequence": 2765 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2763 }, "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_sequence": 2146 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2147 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2396 }, "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_sequence": 2397 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2399 }, "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_sequence": 1959 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 932 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "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_sequence": 2398 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2203 }, "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_sequence": 3807 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3808 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3135 }, "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_sequence": 2762 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2761 }, "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_sequence": 3134 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2027 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "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_sequence": 2668 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3133 }, "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_sequence": 2026 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2414 }, "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_sequence": 2410 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2025 }, "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_sequence": 1967 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "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_sequence": 2024 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1960 }, "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_sequence": 1961 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2413 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3971 }, "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_sequence": 2021 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2659 }, "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_sequence": 2019 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2204 }, "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_sequence": 2202 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2022 }, "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_sequence": 2666 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2757 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "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_sequence": 2156 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "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_sequence": 1747 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2667 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2030 }, "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_sequence": 2029 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "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_sequence": 2018 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "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_sequence": 1757 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "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_sequence": 2015 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2013 }, "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_sequence": 1429 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "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_sequence": 1417 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3947 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3326 }, "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_sequence": 3065 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3064 }, "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_sequence": 2524 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3941 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "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_sequence": 2046 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2043 }, "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_sequence": 2044 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2041 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "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_sequence": 1763 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1759 }, "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_sequence": 1760 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1758 }, "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, "tippecanoe:retain_points_multiplier_sequence": 675 }, "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_sequence": 676 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4365 }, "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_sequence": 2083 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "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_sequence": 4375 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4370 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "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_sequence": 3886 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4019 }, "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_sequence": 1734 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1652 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "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_sequence": 1735 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "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_sequence": 416 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "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_sequence": 1651 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1650 }, "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_sequence": 1649 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "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_sequence": 4366 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2049 }, "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_sequence": 3826 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "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_sequence": 430 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2051 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3062 }, "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_sequence": 4371 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4367 }, "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_sequence": 4372 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 988 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4379 }, "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_sequence": 985 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "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_sequence": 3950 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3944 }, "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_sequence": 439 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3058 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3059 }, "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_sequence": 3060 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3061 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2716 }, "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_sequence": 745 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 744 }, "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_sequence": 2854 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2853 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "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_sequence": 2866 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2862 }, "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_sequence": 2861 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2859 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2860 }, "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_sequence": 2855 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2856 }, "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_sequence": 743 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "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_sequence": 2848 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4013 }, "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_sequence": 747 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3165 }, "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_sequence": 746 }, "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_sequence": 3150 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3915 }, "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_sequence": 3151 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3919 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3148 }, "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_sequence": 3149 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3920 }, "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_sequence": 3138 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3139 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3141 }, "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_sequence": 3911 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3140 }, "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_sequence": 3142 }, "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_sequence": 2404 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2505 }, "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_sequence": 2484 }, "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_sequence": 667 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "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_sequence": 1812 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2498 }, "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_sequence": 2499 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "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_sequence": 4283 }, "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, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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_sequence": 2201 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "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_sequence": 1809 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1808 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2390 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1814 }, "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_sequence": 2387 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2392 }, "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_sequence": 2389 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "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_sequence": 2393 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2391 }, "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_sequence": 1815 }, "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_sequence": 1813 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2592 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2591 }, "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_sequence": 3127 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3126 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "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_sequence": 2971 }, "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_sequence": 4022 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2799 }, "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_sequence": 3417 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3418 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3415 }, "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_sequence": 3416 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3678 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3842 }, "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_sequence": 1855 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "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_sequence": 2260 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3869 }, "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_sequence": 4090 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4092 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3680 }, "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_sequence": 4091 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3679 }, "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_sequence": 3837 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3770 }, "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_sequence": 1416 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3866 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3867 }, "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_sequence": 3931 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3873 }, "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_sequence": 3872 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3767 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3857 }, "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_sequence": 3858 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4089 }, "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_sequence": 4088 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3856 }, "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_sequence": 3855 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "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_sequence": 3768 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3774 }, "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_sequence": 3773 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3771 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3772 }, "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_sequence": 3236 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3237 }, "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_sequence": 3769 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3871 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3216 }, "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_sequence": 3217 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3218 }, "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_sequence": 801 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3232 }, "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_sequence": 3219 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3975 }, "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, "tippecanoe:retain_points_multiplier_sequence": 806 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2032 }, "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_sequence": 2031 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "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, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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_sequence": 65 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "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_sequence": 2846 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4095 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3816 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3819 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2622 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4000 }, "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_sequence": 3817 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3967 }, "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_sequence": 3821 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4001 }, "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_sequence": 2333 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3999 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3822 }, "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_sequence": 2618 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3823 }, "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_sequence": 2617 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3820 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784215 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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_sequence": 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_sequence": 2 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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_sequence": 4 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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_sequence": 6 }, "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_sequence": 7 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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_sequence": 9 }, "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, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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_sequence": 11 }, "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, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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, "tippecanoe:retain_points_multiplier_sequence": 199 }, "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, "tippecanoe:retain_points_multiplier_sequence": 200 }, "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, "tippecanoe:retain_points_multiplier_sequence": 146 }, "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, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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, "tippecanoe:retain_points_multiplier_sequence": 515 }, "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, "tippecanoe:retain_points_multiplier_sequence": 116 }, "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, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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, "tippecanoe:retain_points_multiplier_sequence": 516 }, "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, "tippecanoe:retain_points_multiplier_sequence": 114 }, "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, "tippecanoe:retain_points_multiplier_sequence": 208 }, "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, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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, "tippecanoe:retain_points_multiplier_sequence": 119 }, "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, "tippecanoe:retain_points_multiplier_sequence": 473 }, "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, "tippecanoe:retain_points_multiplier_sequence": 474 }, "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, "tippecanoe:retain_points_multiplier_sequence": 446 }, "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, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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, "tippecanoe:retain_points_multiplier_sequence": 447 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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, "tippecanoe:retain_points_multiplier_sequence": 507 }, "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, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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, "tippecanoe:retain_points_multiplier_sequence": 96 }, "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, "tippecanoe:retain_points_multiplier_sequence": 205 }, "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, "tippecanoe:retain_points_multiplier_sequence": 99 }, "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, "tippecanoe:retain_points_multiplier_sequence": 483 }, "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, "tippecanoe:retain_points_multiplier_sequence": 100 }, "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, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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, "tippecanoe:retain_points_multiplier_sequence": 471 }, "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, "tippecanoe:retain_points_multiplier_sequence": 101 }, "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, "tippecanoe:retain_points_multiplier_sequence": 98 }, "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, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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, "tippecanoe:retain_points_multiplier_sequence": 172 }, "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, "tippecanoe:retain_points_multiplier_sequence": 178 }, "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, "tippecanoe:retain_points_multiplier_sequence": 470 }, "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, "tippecanoe:retain_points_multiplier_sequence": 175 }, "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, "tippecanoe:retain_points_multiplier_sequence": 174 }, "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, "tippecanoe:retain_points_multiplier_sequence": 469 }, "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, "tippecanoe:retain_points_multiplier_sequence": 180 }, "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, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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, "tippecanoe:retain_points_multiplier_sequence": 468 }, "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, "tippecanoe:retain_points_multiplier_sequence": 292 }, "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, "tippecanoe:retain_points_multiplier_sequence": 181 }, "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, "tippecanoe:retain_points_multiplier_sequence": 479 }, "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, "tippecanoe:retain_points_multiplier_sequence": 291 }, "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, "tippecanoe:retain_points_multiplier_sequence": 173 }, "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, "tippecanoe:retain_points_multiplier_sequence": 179 }, "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, "tippecanoe:retain_points_multiplier_sequence": 177 }, "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, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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, "tippecanoe:retain_points_multiplier_sequence": 189 }, "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, "tippecanoe:retain_points_multiplier_sequence": 190 }, "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, "tippecanoe:retain_points_multiplier_sequence": 230 }, "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, "tippecanoe:retain_points_multiplier_sequence": 211 }, "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, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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, "tippecanoe:retain_points_multiplier_sequence": 228 }, "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, "tippecanoe:retain_points_multiplier_sequence": 131 }, "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, "tippecanoe:retain_points_multiplier_sequence": 165 }, "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, "tippecanoe:retain_points_multiplier_sequence": 459 }, "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, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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, "tippecanoe:retain_points_multiplier_sequence": 231 }, "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, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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, "tippecanoe:retain_points_multiplier_sequence": 232 }, "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, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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, "tippecanoe:retain_points_multiplier_sequence": 328 }, "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, "tippecanoe:retain_points_multiplier_sequence": 513 }, "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, "tippecanoe:retain_points_multiplier_sequence": 337 }, "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, "tippecanoe:retain_points_multiplier_sequence": 130 }, "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, "tippecanoe:retain_points_multiplier_sequence": 166 }, "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, "tippecanoe:retain_points_multiplier_sequence": 331 }, "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, "tippecanoe:retain_points_multiplier_sequence": 451 }, "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, "tippecanoe:retain_points_multiplier_sequence": 330 }, "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, "tippecanoe:retain_points_multiplier_sequence": 336 }, "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, "tippecanoe:retain_points_multiplier_sequence": 128 }, "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, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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, "tippecanoe:retain_points_multiplier_sequence": 338 }, "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, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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, "tippecanoe:retain_points_multiplier_sequence": 461 }, "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, "tippecanoe:retain_points_multiplier_sequence": 171 }, "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, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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, "tippecanoe:retain_points_multiplier_sequence": 355 }, "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, "tippecanoe:retain_points_multiplier_sequence": 462 }, "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, "tippecanoe:retain_points_multiplier_sequence": 510 }, "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, "tippecanoe:retain_points_multiplier_sequence": 329 }, "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, "tippecanoe:retain_points_multiplier_sequence": 458 }, "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, "tippecanoe:retain_points_multiplier_sequence": 150 }, "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, "tippecanoe:retain_points_multiplier_sequence": 140 }, "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, "tippecanoe:retain_points_multiplier_sequence": 472 }, "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, "tippecanoe:retain_points_multiplier_sequence": 136 }, "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, "tippecanoe:retain_points_multiplier_sequence": 137 }, "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, "tippecanoe:retain_points_multiplier_sequence": 263 }, "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, "tippecanoe:retain_points_multiplier_sequence": 257 }, "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, "tippecanoe:retain_points_multiplier_sequence": 256 }, "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, "tippecanoe:retain_points_multiplier_sequence": 243 }, "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, "tippecanoe:retain_points_multiplier_sequence": 284 }, "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, "tippecanoe:retain_points_multiplier_sequence": 283 }, "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, "tippecanoe:retain_points_multiplier_sequence": 277 }, "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, "tippecanoe:retain_points_multiplier_sequence": 278 }, "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, "tippecanoe:retain_points_multiplier_sequence": 282 }, "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, "tippecanoe:retain_points_multiplier_sequence": 64 }, "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, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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, "tippecanoe:retain_points_multiplier_sequence": 65 }, "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, "tippecanoe:retain_points_multiplier_sequence": 275 }, "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, "tippecanoe:retain_points_multiplier_sequence": 281 }, "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, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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, "tippecanoe:retain_points_multiplier_sequence": 306 }, "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, "tippecanoe:retain_points_multiplier_sequence": 309 }, "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, "tippecanoe:retain_points_multiplier_sequence": 286 }, "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, "tippecanoe:retain_points_multiplier_sequence": 310 }, "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, "tippecanoe:retain_points_multiplier_sequence": 285 }, "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, "tippecanoe:retain_points_multiplier_sequence": 478 }, "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, "tippecanoe:retain_points_multiplier_sequence": 305 }, "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, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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, "tippecanoe:retain_points_multiplier_sequence": 222 }, "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, "tippecanoe:retain_points_multiplier_sequence": 223 }, "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, "tippecanoe:retain_points_multiplier_sequence": 226 }, "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, "tippecanoe:retain_points_multiplier_sequence": 227 }, "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, "tippecanoe:retain_points_multiplier_sequence": 215 }, "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, "tippecanoe:retain_points_multiplier_sequence": 214 }, "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, "tippecanoe:retain_points_multiplier_sequence": 219 }, "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, "tippecanoe:retain_points_multiplier_sequence": 217 }, "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, "tippecanoe:retain_points_multiplier_sequence": 218 }, "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, "tippecanoe:retain_points_multiplier_sequence": 225 }, "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, "tippecanoe:retain_points_multiplier_sequence": 224 }, "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, "tippecanoe:retain_points_multiplier_sequence": 212 }, "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, "tippecanoe:retain_points_multiplier_sequence": 213 }, "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, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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, "tippecanoe:retain_points_multiplier_sequence": 363 }, "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, "tippecanoe:retain_points_multiplier_sequence": 364 }, "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, "tippecanoe:retain_points_multiplier_sequence": 514 }, "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, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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, "tippecanoe:retain_points_multiplier_sequence": 497 }, "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, "tippecanoe:retain_points_multiplier_sequence": 495 }, "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, "tippecanoe:retain_points_multiplier_sequence": 496 }, "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, "tippecanoe:retain_points_multiplier_sequence": 502 }, "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, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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, "tippecanoe:retain_points_multiplier_sequence": 118 }, "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, "tippecanoe:retain_points_multiplier_sequence": 107 }, "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, "tippecanoe:retain_points_multiplier_sequence": 188 }, "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, "tippecanoe:retain_points_multiplier_sequence": 197 }, "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, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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, "tippecanoe:retain_points_multiplier_sequence": 195 }, "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, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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, "tippecanoe:retain_points_multiplier_sequence": 193 }, "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, "tippecanoe:retain_points_multiplier_sequence": 194 }, "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, "tippecanoe:retain_points_multiplier_sequence": 147 }, "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, "tippecanoe:retain_points_multiplier_sequence": 144 }, "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, "tippecanoe:retain_points_multiplier_sequence": 145 }, "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, "tippecanoe:retain_points_multiplier_sequence": 143 }, "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, "tippecanoe:retain_points_multiplier_sequence": 47 }, "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, "tippecanoe:retain_points_multiplier_sequence": 48 }, "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, "tippecanoe:retain_points_multiplier_sequence": 182 }, "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, "tippecanoe:retain_points_multiplier_sequence": 148 }, "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, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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, "tippecanoe:retain_points_multiplier_sequence": 517 }, "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, "tippecanoe:retain_points_multiplier_sequence": 207 }, "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, "tippecanoe:retain_points_multiplier_sequence": 184 }, "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, "tippecanoe:retain_points_multiplier_sequence": 524 }, "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, "tippecanoe:retain_points_multiplier_sequence": 521 }, "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, "tippecanoe:retain_points_multiplier_sequence": 113 }, "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, "tippecanoe:retain_points_multiplier_sequence": 448 }, "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, "tippecanoe:retain_points_multiplier_sequence": 476 }, "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, "tippecanoe:retain_points_multiplier_sequence": 120 }, "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, "tippecanoe:retain_points_multiplier_sequence": 112 }, "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, "tippecanoe:retain_points_multiplier_sequence": 183 }, "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, "tippecanoe:retain_points_multiplier_sequence": 121 }, "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, "tippecanoe:retain_points_multiplier_sequence": 142 }, "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, "tippecanoe:retain_points_multiplier_sequence": 141 }, "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, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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, "tippecanoe:retain_points_multiplier_sequence": 30 }, "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, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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, "tippecanoe:retain_points_multiplier_sequence": 90 }, "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, "tippecanoe:retain_points_multiplier_sequence": 110 }, "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, "tippecanoe:retain_points_multiplier_sequence": 109 }, "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, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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, "tippecanoe:retain_points_multiplier_sequence": 518 }, "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, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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, "tippecanoe:retain_points_multiplier_sequence": 201 }, "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, "tippecanoe:retain_points_multiplier_sequence": 422 }, "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, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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, "tippecanoe:retain_points_multiplier_sequence": 204 }, "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, "tippecanoe:retain_points_multiplier_sequence": 317 }, "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, "tippecanoe:retain_points_multiplier_sequence": 522 }, "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, "tippecanoe:retain_points_multiplier_sequence": 520 }, "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, "tippecanoe:retain_points_multiplier_sequence": 523 }, "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, "tippecanoe:retain_points_multiplier_sequence": 87 }, "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, "tippecanoe:retain_points_multiplier_sequence": 525 }, "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, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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, "tippecanoe:retain_points_multiplier_sequence": 84 }, "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, "tippecanoe:retain_points_multiplier_sequence": 519 }, "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, "tippecanoe:retain_points_multiplier_sequence": 202 }, "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, "tippecanoe:retain_points_multiplier_sequence": 203 }, "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, "tippecanoe:retain_points_multiplier_sequence": 206 }, "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, "tippecanoe:retain_points_multiplier_sequence": 460 }, "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, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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, "tippecanoe:retain_points_multiplier_sequence": 457 }, "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, "tippecanoe:retain_points_multiplier_sequence": 33 }, "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, "tippecanoe:retain_points_multiplier_sequence": 313 }, "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, "tippecanoe:retain_points_multiplier_sequence": 56 }, "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, "tippecanoe:retain_points_multiplier_sequence": 57 }, "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, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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, "tippecanoe:retain_points_multiplier_sequence": 381 }, "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, "tippecanoe:retain_points_multiplier_sequence": 314 }, "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, "tippecanoe:retain_points_multiplier_sequence": 526 }, "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, "tippecanoe:retain_points_multiplier_sequence": 51 }, "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, "tippecanoe:retain_points_multiplier_sequence": 527 }, "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, "tippecanoe:retain_points_multiplier_sequence": 37 }, "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, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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, "tippecanoe:retain_points_multiplier_sequence": 45 }, "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, "tippecanoe:retain_points_multiplier_sequence": 382 }, "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, "tippecanoe:retain_points_multiplier_sequence": 103 }, "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, "tippecanoe:retain_points_multiplier_sequence": 506 }, "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, "tippecanoe:retain_points_multiplier_sequence": 315 }, "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, "tippecanoe:retain_points_multiplier_sequence": 316 }, "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, "tippecanoe:retain_points_multiplier_sequence": 276 }, "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, "tippecanoe:retain_points_multiplier_sequence": 60 }, "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, "tippecanoe:retain_points_multiplier_sequence": 344 }, "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, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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, "tippecanoe:retain_points_multiplier_sequence": 59 }, "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, "tippecanoe:retain_points_multiplier_sequence": 341 }, "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, "tippecanoe:retain_points_multiplier_sequence": 343 }, "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, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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, "tippecanoe:retain_points_multiplier_sequence": 294 }, "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, "tippecanoe:retain_points_multiplier_sequence": 293 }, "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, "tippecanoe:retain_points_multiplier_sequence": 304 }, "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, "tippecanoe:retain_points_multiplier_sequence": 303 }, "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, "tippecanoe:retain_points_multiplier_sequence": 300 }, "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, "tippecanoe:retain_points_multiplier_sequence": 299 }, "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, "tippecanoe:retain_points_multiplier_sequence": 297 }, "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, "tippecanoe:retain_points_multiplier_sequence": 298 }, "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, "tippecanoe:retain_points_multiplier_sequence": 295 }, "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, "tippecanoe:retain_points_multiplier_sequence": 296 }, "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, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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, "tippecanoe:retain_points_multiplier_sequence": 342 }, "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, "tippecanoe:retain_points_multiplier_sequence": 289 }, "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, "tippecanoe:retain_points_multiplier_sequence": 290 }, "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, "tippecanoe:retain_points_multiplier_sequence": 475 }, "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, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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, "tippecanoe:retain_points_multiplier_sequence": 287 }, "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, "tippecanoe:retain_points_multiplier_sequence": 339 }, "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, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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, "tippecanoe:retain_points_multiplier_sequence": 302 }, "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, "tippecanoe:retain_points_multiplier_sequence": 345 }, "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, "tippecanoe:retain_points_multiplier_sequence": 301 }, "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, "tippecanoe:retain_points_multiplier_sequence": 340 }, "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, "tippecanoe:retain_points_multiplier_sequence": 375 }, "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, "tippecanoe:retain_points_multiplier_sequence": 376 }, "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, "tippecanoe:retain_points_multiplier_sequence": 449 }, "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, "tippecanoe:retain_points_multiplier_sequence": 264 }, "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, "tippecanoe:retain_points_multiplier_sequence": 508 }, "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, "tippecanoe:retain_points_multiplier_sequence": 265 }, "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, "tippecanoe:retain_points_multiplier_sequence": 505 }, "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, "tippecanoe:retain_points_multiplier_sequence": 250 }, "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, "tippecanoe:retain_points_multiplier_sequence": 254 }, "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, "tippecanoe:retain_points_multiplier_sequence": 249 }, "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, "tippecanoe:retain_points_multiplier_sequence": 334 }, "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, "tippecanoe:retain_points_multiplier_sequence": 452 }, "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, "tippecanoe:retain_points_multiplier_sequence": 335 }, "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, "tippecanoe:retain_points_multiplier_sequence": 453 }, "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, "tippecanoe:retain_points_multiplier_sequence": 332 }, "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, "tippecanoe:retain_points_multiplier_sequence": 333 }, "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, "tippecanoe:retain_points_multiplier_sequence": 454 }, "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, "tippecanoe:retain_points_multiplier_sequence": 323 }, "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, "tippecanoe:retain_points_multiplier_sequence": 324 }, "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, "tippecanoe:retain_points_multiplier_sequence": 326 }, "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, "tippecanoe:retain_points_multiplier_sequence": 450 }, "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, "tippecanoe:retain_points_multiplier_sequence": 325 }, "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, "tippecanoe:retain_points_multiplier_sequence": 327 }, "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, "tippecanoe:retain_points_multiplier_sequence": 267 }, "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, "tippecanoe:retain_points_multiplier_sequence": 268 }, "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, "tippecanoe:retain_points_multiplier_sequence": 245 }, "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, "tippecanoe:retain_points_multiplier_sequence": 261 }, "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, "tippecanoe:retain_points_multiplier_sequence": 247 }, "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, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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, "tippecanoe:retain_points_multiplier_sequence": 259 }, "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, "tippecanoe:retain_points_multiplier_sequence": 511 }, "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, "tippecanoe:retain_points_multiplier_sequence": 255 }, "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, "tippecanoe:retain_points_multiplier_sequence": 251 }, "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, "tippecanoe:retain_points_multiplier_sequence": 266 }, "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, "tippecanoe:retain_points_multiplier_sequence": 246 }, "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, "tippecanoe:retain_points_multiplier_sequence": 258 }, "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, "tippecanoe:retain_points_multiplier_sequence": 262 }, "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, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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, "tippecanoe:retain_points_multiplier_sequence": 41 }, "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, "tippecanoe:retain_points_multiplier_sequence": 154 }, "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, "tippecanoe:retain_points_multiplier_sequence": 156 }, "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, "tippecanoe:retain_points_multiplier_sequence": 252 }, "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, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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, "tippecanoe:retain_points_multiplier_sequence": 155 }, "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, "tippecanoe:retain_points_multiplier_sequence": 248 }, "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, "tippecanoe:retain_points_multiplier_sequence": 509 }, "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, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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, "tippecanoe:retain_points_multiplier_sequence": 210 }, "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, "tippecanoe:retain_points_multiplier_sequence": 162 }, "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, "tippecanoe:retain_points_multiplier_sequence": 161 }, "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, "tippecanoe:retain_points_multiplier_sequence": 153 }, "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, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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, "tippecanoe:retain_points_multiplier_sequence": 235 }, "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, "tippecanoe:retain_points_multiplier_sequence": 244 }, "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, "tippecanoe:retain_points_multiplier_sequence": 236 }, "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, "tippecanoe:retain_points_multiplier_sequence": 271 }, "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, "tippecanoe:retain_points_multiplier_sequence": 102 }, "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, "tippecanoe:retain_points_multiplier_sequence": 238 }, "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, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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, "tippecanoe:retain_points_multiplier_sequence": 233 }, "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, "tippecanoe:retain_points_multiplier_sequence": 240 }, "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, "tippecanoe:retain_points_multiplier_sequence": 237 }, "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, "tippecanoe:retain_points_multiplier_sequence": 274 }, "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, "tippecanoe:retain_points_multiplier_sequence": 242 }, "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, "tippecanoe:retain_points_multiplier_sequence": 241 }, "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, "tippecanoe:retain_points_multiplier_sequence": 239 }, "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, "tippecanoe:retain_points_multiplier_sequence": 160 }, "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, "tippecanoe:retain_points_multiplier_sequence": 308 }, "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, "tippecanoe:retain_points_multiplier_sequence": 269 }, "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, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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, "tippecanoe:retain_points_multiplier_sequence": 307 }, "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, "tippecanoe:retain_points_multiplier_sequence": 158 }, "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, "tippecanoe:retain_points_multiplier_sequence": 273 }, "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, "tippecanoe:retain_points_multiplier_sequence": 157 }, "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, "tippecanoe:retain_points_multiplier_sequence": 270 }, "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, "tippecanoe:retain_points_multiplier_sequence": 163 }, "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, "tippecanoe:retain_points_multiplier_sequence": 378 }, "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, "tippecanoe:retain_points_multiplier_sequence": 380 }, "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, "tippecanoe:retain_points_multiplier_sequence": 379 }, "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, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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, "tippecanoe:retain_points_multiplier_sequence": 81 }, "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, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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, "tippecanoe:retain_points_multiplier_sequence": 272 }, "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, "tippecanoe:retain_points_multiplier_sequence": 320 }, "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, "tippecanoe:retain_points_multiplier_sequence": 319 }, "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, "tippecanoe:retain_points_multiplier_sequence": 311 }, "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, "tippecanoe:retain_points_multiplier_sequence": 312 }, "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, "tippecanoe:retain_points_multiplier_sequence": 377 }, "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, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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, "tippecanoe:retain_points_multiplier_sequence": 123 }, "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, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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, "tippecanoe:retain_points_multiplier_sequence": 124 }, "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, "tippecanoe:retain_points_multiplier_sequence": 125 }, "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, "tippecanoe:retain_points_multiplier_sequence": 477 }, "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, "tippecanoe:retain_points_multiplier_sequence": 280 }, "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, "tippecanoe:retain_points_multiplier_sequence": 279 }, "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, "tippecanoe:retain_points_multiplier_sequence": 126 }, "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, "tippecanoe:retain_points_multiplier_sequence": 132 }, "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, "tippecanoe:retain_points_multiplier_sequence": 392 }, "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, "tippecanoe:retain_points_multiplier_sequence": 393 }, "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, "tippecanoe:retain_points_multiplier_sequence": 385 }, "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, "tippecanoe:retain_points_multiplier_sequence": 386 }, "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, "tippecanoe:retain_points_multiplier_sequence": 133 }, "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, "tippecanoe:retain_points_multiplier_sequence": 481 }, "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, "tippecanoe:retain_points_multiplier_sequence": 482 }, "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, "tippecanoe:retain_points_multiplier_sequence": 139 }, "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, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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, "tippecanoe:retain_points_multiplier_sequence": 151 }, "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, "tippecanoe:retain_points_multiplier_sequence": 384 }, "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, "tippecanoe:retain_points_multiplier_sequence": 383 }, "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, "tippecanoe:retain_points_multiplier_sequence": 465 }, "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, "tippecanoe:retain_points_multiplier_sequence": 395 }, "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, "tippecanoe:retain_points_multiplier_sequence": 354 }, "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, "tippecanoe:retain_points_multiplier_sequence": 348 }, "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, "tippecanoe:retain_points_multiplier_sequence": 349 }, "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, "tippecanoe:retain_points_multiplier_sequence": 347 }, "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, "tippecanoe:retain_points_multiplier_sequence": 350 }, "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, "tippecanoe:retain_points_multiplier_sequence": 346 }, "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, "tippecanoe:retain_points_multiplier_sequence": 396 }, "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, "tippecanoe:retain_points_multiplier_sequence": 407 }, "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, "tippecanoe:retain_points_multiplier_sequence": 431 }, "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, "tippecanoe:retain_points_multiplier_sequence": 187 }, "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, "tippecanoe:retain_points_multiplier_sequence": 186 }, "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, "tippecanoe:retain_points_multiplier_sequence": 185 }, "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, "tippecanoe:retain_points_multiplier_sequence": 398 }, "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, "tippecanoe:retain_points_multiplier_sequence": 220 }, "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, "tippecanoe:retain_points_multiplier_sequence": 221 }, "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, "tippecanoe:retain_points_multiplier_sequence": 442 }, "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, "tippecanoe:retain_points_multiplier_sequence": 489 }, "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, "tippecanoe:retain_points_multiplier_sequence": 492 }, "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, "tippecanoe:retain_points_multiplier_sequence": 411 }, "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, "tippecanoe:retain_points_multiplier_sequence": 490 }, "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, "tippecanoe:retain_points_multiplier_sequence": 410 }, "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, "tippecanoe:retain_points_multiplier_sequence": 404 }, "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, "tippecanoe:retain_points_multiplier_sequence": 397 }, "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, "tippecanoe:retain_points_multiplier_sequence": 390 }, "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, "tippecanoe:retain_points_multiplier_sequence": 391 }, "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, "tippecanoe:retain_points_multiplier_sequence": 403 }, "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, "tippecanoe:retain_points_multiplier_sequence": 413 }, "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, "tippecanoe:retain_points_multiplier_sequence": 412 }, "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, "tippecanoe:retain_points_multiplier_sequence": 399 }, "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, "tippecanoe:retain_points_multiplier_sequence": 400 }, "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, "tippecanoe:retain_points_multiplier_sequence": 371 }, "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, "tippecanoe:retain_points_multiplier_sequence": 372 }, "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, "tippecanoe:retain_points_multiplier_sequence": 353 }, "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, "tippecanoe:retain_points_multiplier_sequence": 168 }, "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, "tippecanoe:retain_points_multiplier_sequence": 352 }, "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, "tippecanoe:retain_points_multiplier_sequence": 169 }, "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, "tippecanoe:retain_points_multiplier_sequence": 351 }, "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, "tippecanoe:retain_points_multiplier_sequence": 167 }, "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, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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, "tippecanoe:retain_points_multiplier_sequence": 455 }, "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, "tippecanoe:retain_points_multiplier_sequence": 164 }, "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, "tippecanoe:retain_points_multiplier_sequence": 374 }, "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, "tippecanoe:retain_points_multiplier_sequence": 370 }, "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, "tippecanoe:retain_points_multiplier_sequence": 369 }, "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, "tippecanoe:retain_points_multiplier_sequence": 504 }, "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, "tippecanoe:retain_points_multiplier_sequence": 367 }, "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, "tippecanoe:retain_points_multiplier_sequence": 368 }, "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, "tippecanoe:retain_points_multiplier_sequence": 373 }, "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, "tippecanoe:retain_points_multiplier_sequence": 430 }, "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, "tippecanoe:retain_points_multiplier_sequence": 417 }, "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, "tippecanoe:retain_points_multiplier_sequence": 104 }, "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, "tippecanoe:retain_points_multiplier_sequence": 440 }, "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, "tippecanoe:retain_points_multiplier_sequence": 441 }, "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, "tippecanoe:retain_points_multiplier_sequence": 456 }, "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, "tippecanoe:retain_points_multiplier_sequence": 445 }, "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, "tippecanoe:retain_points_multiplier_sequence": 444 }, "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, "tippecanoe:retain_points_multiplier_sequence": 414 }, "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, "tippecanoe:retain_points_multiplier_sequence": 434 }, "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, "tippecanoe:retain_points_multiplier_sequence": 435 }, "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, "tippecanoe:retain_points_multiplier_sequence": 488 }, "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, "tippecanoe:retain_points_multiplier_sequence": 487 }, "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, "tippecanoe:retain_points_multiplier_sequence": 436 }, "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, "tippecanoe:retain_points_multiplier_sequence": 321 }, "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, "tippecanoe:retain_points_multiplier_sequence": 406 }, "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, "tippecanoe:retain_points_multiplier_sequence": 389 }, "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, "tippecanoe:retain_points_multiplier_sequence": 388 }, "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, "tippecanoe:retain_points_multiplier_sequence": 322 }, "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, "tippecanoe:retain_points_multiplier_sequence": 437 }, "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, "tippecanoe:retain_points_multiplier_sequence": 438 }, "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, "tippecanoe:retain_points_multiplier_sequence": 409 }, "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, "tippecanoe:retain_points_multiplier_sequence": 408 }, "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, "tippecanoe:retain_points_multiplier_sequence": 439 }, "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, "tippecanoe:retain_points_multiplier_sequence": 433 }, "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, "tippecanoe:retain_points_multiplier_sequence": 432 }, "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, "tippecanoe:retain_points_multiplier_sequence": 52 }, "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, "tippecanoe:retain_points_multiplier_sequence": 318 }, "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, "tippecanoe:retain_points_multiplier_sequence": 485 }, "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, "tippecanoe:retain_points_multiplier_sequence": 405 }, "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, "tippecanoe:retain_points_multiplier_sequence": 415 }, "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, "tippecanoe:retain_points_multiplier_sequence": 421 }, "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, "tippecanoe:retain_points_multiplier_sequence": 420 }, "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, "tippecanoe:retain_points_multiplier_sequence": 418 }, "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, "tippecanoe:retain_points_multiplier_sequence": 419 }, "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, "tippecanoe:retain_points_multiplier_sequence": 365 }, "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, "tippecanoe:retain_points_multiplier_sequence": 366 }, "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, "tippecanoe:retain_points_multiplier_sequence": 416 }, "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, "tippecanoe:retain_points_multiplier_sequence": 443 }, "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, "tippecanoe:retain_points_multiplier_sequence": 356 }, "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, "tippecanoe:retain_points_multiplier_sequence": 357 }, "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, "tippecanoe:retain_points_multiplier_sequence": 358 }, "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, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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, "tippecanoe:retain_points_multiplier_sequence": 71 }, "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, "tippecanoe:retain_points_multiplier_sequence": 362 }, "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, "tippecanoe:retain_points_multiplier_sequence": 359 }, "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, "tippecanoe:retain_points_multiplier_sequence": 467 }, "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, "tippecanoe:retain_points_multiplier_sequence": 361 }, "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, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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, "tippecanoe:retain_points_multiplier_sequence": 464 }, "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, "tippecanoe:retain_points_multiplier_sequence": 360 }, "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, "tippecanoe:retain_points_multiplier_sequence": 501 }, "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, "tippecanoe:retain_points_multiplier_sequence": 494 }, "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, "tippecanoe:retain_points_multiplier_sequence": 498 }, "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, "tippecanoe:retain_points_multiplier_sequence": 491 }, "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, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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, "tippecanoe:retain_points_multiplier_sequence": 486 }, "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, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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, "tippecanoe:retain_points_multiplier_sequence": 76 }, "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, "tippecanoe:retain_points_multiplier_sequence": 72 }, "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, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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, "tippecanoe:retain_points_multiplier_sequence": 429 }, "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, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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, "tippecanoe:retain_points_multiplier_sequence": 427 }, "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, "tippecanoe:retain_points_multiplier_sequence": 428 }, "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, "tippecanoe:retain_points_multiplier_sequence": 394 }, "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, "tippecanoe:retain_points_multiplier_sequence": 402 }, "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, "tippecanoe:retain_points_multiplier_sequence": 401 }, "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, "tippecanoe:retain_points_multiplier_sequence": 499 }, "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, "tippecanoe:retain_points_multiplier_sequence": 387 }, "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, "tippecanoe:retain_points_multiplier_sequence": 500 }, "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, "tippecanoe:retain_points_multiplier_sequence": 466 }, "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, "tippecanoe:retain_points_multiplier_sequence": 503 }, "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, "tippecanoe:retain_points_multiplier_sequence": 74 }, "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, "tippecanoe:retain_points_multiplier_sequence": 463 }, "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, "tippecanoe:retain_points_multiplier_sequence": 480 }, "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, "tippecanoe:retain_points_multiplier_sequence": 426 }, "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, "tippecanoe:retain_points_multiplier_sequence": 425 }, "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, "tippecanoe:retain_points_multiplier_sequence": 424 }, "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, "tippecanoe:retain_points_multiplier_sequence": 423 }, "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, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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, "tippecanoe:retain_points_multiplier_sequence": 512 }, "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, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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, "tippecanoe:retain_points_multiplier_sequence": 191 }, "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, "tippecanoe:retain_points_multiplier_sequence": 117 }, "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, "tippecanoe:retain_points_multiplier_sequence": 20 }, "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, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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, "tippecanoe:retain_points_multiplier_sequence": 36 }, "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, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 288 }, "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, "tippecanoe:retain_points_multiplier_sequence": 493 }, "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": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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, "tippecanoe:retain_points_multiplier_sequence": 813 }, "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, "tippecanoe:retain_points_multiplier_sequence": 812 }, "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, "tippecanoe:retain_points_multiplier_sequence": 810 }, "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, "tippecanoe:retain_points_multiplier_sequence": 811 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4162 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4164 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4163 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1693 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2283 }, "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, "tippecanoe:retain_points_multiplier_sequence": 730 }, "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, "tippecanoe:retain_points_multiplier_sequence": 729 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "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, "tippecanoe:retain_points_multiplier_sequence": 87 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3813 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2141 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2140 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1695 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1694 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1691 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1692 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2137 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2138 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2135 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2247 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2246 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2280 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2142 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2560 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2561 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2478 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2250 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2251 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2133 }, "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, "tippecanoe:retain_points_multiplier_sequence": 666 }, "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, "tippecanoe:retain_points_multiplier_sequence": 667 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4042 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1899 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1898 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4038 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4258 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4040 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4043 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4041 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2477 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1897 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4044 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4257 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3758 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2927 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2925 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4259 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2930 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4256 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2929 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2164 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3850 }, "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, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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, "tippecanoe:retain_points_multiplier_sequence": 136 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "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, "tippecanoe:retain_points_multiplier_sequence": 150 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4148 }, "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, "tippecanoe:retain_points_multiplier_sequence": 139 }, "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, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4123 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3000 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3001 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2202 }, "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, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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, "tippecanoe:retain_points_multiplier_sequence": 137 }, "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, "tippecanoe:retain_points_multiplier_sequence": 932 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "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, "tippecanoe:retain_points_multiplier_sequence": 935 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3759 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2143 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3499 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3525 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3498 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2919 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2031 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2920 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2915 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3123 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2015 }, "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, "tippecanoe:retain_points_multiplier_sequence": 154 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3165 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "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, "tippecanoe:retain_points_multiplier_sequence": 950 }, "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, "tippecanoe:retain_points_multiplier_sequence": 949 }, "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, "tippecanoe:retain_points_multiplier_sequence": 947 }, "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, "tippecanoe:retain_points_multiplier_sequence": 948 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2155 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2156 }, "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, "tippecanoe:retain_points_multiplier_sequence": 944 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3913 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3534 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1556 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4200 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4157 }, "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, "tippecanoe:retain_points_multiplier_sequence": 802 }, "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, "tippecanoe:retain_points_multiplier_sequence": 801 }, "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, "tippecanoe:retain_points_multiplier_sequence": 800 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3993 }, "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, "tippecanoe:retain_points_multiplier_sequence": 151 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1646 }, "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, "tippecanoe:retain_points_multiplier_sequence": 934 }, "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, "tippecanoe:retain_points_multiplier_sequence": 933 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1535 }, "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, "tippecanoe:retain_points_multiplier_sequence": 936 }, "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, "tippecanoe:retain_points_multiplier_sequence": 937 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2145 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2146 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1552 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4301 }, "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, "tippecanoe:retain_points_multiplier_sequence": 954 }, "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, "tippecanoe:retain_points_multiplier_sequence": 953 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3682 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3263 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3507 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3961 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3508 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3500 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3779 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3501 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3505 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3506 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3531 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3530 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3264 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "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, "tippecanoe:retain_points_multiplier_sequence": 857 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2032 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "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, "tippecanoe:retain_points_multiplier_sequence": 883 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1798 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3261 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3260 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3266 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3265 }, "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, "tippecanoe:retain_points_multiplier_sequence": 145 }, "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, "tippecanoe:retain_points_multiplier_sequence": 146 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1531 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1532 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2019 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2040 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4112 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2035 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3267 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1550 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3657 }, "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, "tippecanoe:retain_points_multiplier_sequence": 884 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3262 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3259 }, "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, "tippecanoe:retain_points_multiplier_sequence": 897 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3672 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1563 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1565 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3106 }, "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, "tippecanoe:retain_points_multiplier_sequence": 860 }, "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, "tippecanoe:retain_points_multiplier_sequence": 861 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3130 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3129 }, "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, "tippecanoe:retain_points_multiplier_sequence": 649 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2933 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "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, "tippecanoe:retain_points_multiplier_sequence": 650 }, "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, "tippecanoe:retain_points_multiplier_sequence": 131 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1737 }, "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, "tippecanoe:retain_points_multiplier_sequence": 922 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1739 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "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, "tippecanoe:retain_points_multiplier_sequence": 921 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3895 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2956 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2954 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2955 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2374 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4066 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2936 }, "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, "tippecanoe:retain_points_multiplier_sequence": 610 }, "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, "tippecanoe:retain_points_multiplier_sequence": 611 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2935 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1769 }, "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, "tippecanoe:retain_points_multiplier_sequence": 609 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2934 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "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, "tippecanoe:retain_points_multiplier_sequence": 613 }, "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, "tippecanoe:retain_points_multiplier_sequence": 612 }, "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, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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, "tippecanoe:retain_points_multiplier_sequence": 128 }, "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, "tippecanoe:retain_points_multiplier_sequence": 920 }, "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, "tippecanoe:retain_points_multiplier_sequence": 919 }, "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, "tippecanoe:retain_points_multiplier_sequence": 615 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "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, "tippecanoe:retain_points_multiplier_sequence": 614 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4212 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4202 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "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, "tippecanoe:retain_points_multiplier_sequence": 126 }, "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, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4211 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2199 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2200 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3909 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2093 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2195 }, "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, "tippecanoe:retain_points_multiplier_sequence": 625 }, "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, "tippecanoe:retain_points_multiplier_sequence": 624 }, "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, "tippecanoe:retain_points_multiplier_sequence": 616 }, "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, "tippecanoe:retain_points_multiplier_sequence": 617 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2088 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2089 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4155 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4154 }, "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, "tippecanoe:retain_points_multiplier_sequence": 618 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3832 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2087 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3831 }, "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, "tippecanoe:retain_points_multiplier_sequence": 619 }, "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, "tippecanoe:retain_points_multiplier_sequence": 620 }, "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, "tippecanoe:retain_points_multiplier_sequence": 621 }, "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, "tippecanoe:retain_points_multiplier_sequence": 622 }, "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, "tippecanoe:retain_points_multiplier_sequence": 623 }, "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, "tippecanoe:retain_points_multiplier_sequence": 626 }, "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, "tippecanoe:retain_points_multiplier_sequence": 627 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2085 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3815 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3833 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2084 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3835 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2082 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2083 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3834 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2132 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "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, "tippecanoe:retain_points_multiplier_sequence": 590 }, "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, "tippecanoe:retain_points_multiplier_sequence": 589 }, "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, "tippecanoe:retain_points_multiplier_sequence": 592 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "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, "tippecanoe:retain_points_multiplier_sequence": 591 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "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, "tippecanoe:retain_points_multiplier_sequence": 599 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "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, "tippecanoe:retain_points_multiplier_sequence": 598 }, "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, "tippecanoe:retain_points_multiplier_sequence": 601 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "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, "tippecanoe:retain_points_multiplier_sequence": 600 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "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, "tippecanoe:retain_points_multiplier_sequence": 603 }, "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, "tippecanoe:retain_points_multiplier_sequence": 602 }, "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, "tippecanoe:retain_points_multiplier_sequence": 593 }, "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, "tippecanoe:retain_points_multiplier_sequence": 842 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "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, "tippecanoe:retain_points_multiplier_sequence": 844 }, "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, "tippecanoe:retain_points_multiplier_sequence": 845 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4297 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "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, "tippecanoe:retain_points_multiplier_sequence": 843 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "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, "tippecanoe:retain_points_multiplier_sequence": 125 }, "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, "tippecanoe:retain_points_multiplier_sequence": 124 }, "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, "tippecanoe:retain_points_multiplier_sequence": 594 }, "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, "tippecanoe:retain_points_multiplier_sequence": 668 }, "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, "tippecanoe:retain_points_multiplier_sequence": 595 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4246 }, "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, "tippecanoe:retain_points_multiplier_sequence": 123 }, "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, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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, "tippecanoe:retain_points_multiplier_sequence": 597 }, "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, "tippecanoe:retain_points_multiplier_sequence": 596 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4298 }, "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, "tippecanoe:retain_points_multiplier_sequence": 588 }, "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, "tippecanoe:retain_points_multiplier_sequence": 121 }, "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, "tippecanoe:retain_points_multiplier_sequence": 120 }, "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, "tippecanoe:retain_points_multiplier_sequence": 118 }, "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, "tippecanoe:retain_points_multiplier_sequence": 119 }, "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, "tippecanoe:retain_points_multiplier_sequence": 116 }, "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, "tippecanoe:retain_points_multiplier_sequence": 117 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3926 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4210 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1670 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4209 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1668 }, "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, "tippecanoe:retain_points_multiplier_sequence": 542 }, "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, "tippecanoe:retain_points_multiplier_sequence": 541 }, "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, "tippecanoe:retain_points_multiplier_sequence": 546 }, "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, "tippecanoe:retain_points_multiplier_sequence": 841 }, "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, "tippecanoe:retain_points_multiplier_sequence": 547 }, "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, "tippecanoe:retain_points_multiplier_sequence": 535 }, "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, "tippecanoe:retain_points_multiplier_sequence": 840 }, "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, "tippecanoe:retain_points_multiplier_sequence": 536 }, "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, "tippecanoe:retain_points_multiplier_sequence": 839 }, "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, "tippecanoe:retain_points_multiplier_sequence": 838 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "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, "tippecanoe:retain_points_multiplier_sequence": 539 }, "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, "tippecanoe:retain_points_multiplier_sequence": 540 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "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, "tippecanoe:retain_points_multiplier_sequence": 544 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "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, "tippecanoe:retain_points_multiplier_sequence": 545 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "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, "tippecanoe:retain_points_multiplier_sequence": 837 }, "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, "tippecanoe:retain_points_multiplier_sequence": 836 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "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, "tippecanoe:retain_points_multiplier_sequence": 531 }, "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, "tippecanoe:retain_points_multiplier_sequence": 532 }, "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, "tippecanoe:retain_points_multiplier_sequence": 533 }, "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, "tippecanoe:retain_points_multiplier_sequence": 114 }, "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, "tippecanoe:retain_points_multiplier_sequence": 534 }, "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, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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, "tippecanoe:retain_points_multiplier_sequence": 112 }, "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, "tippecanoe:retain_points_multiplier_sequence": 113 }, "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, "tippecanoe:retain_points_multiplier_sequence": 537 }, "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, "tippecanoe:retain_points_multiplier_sequence": 538 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "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, "tippecanoe:retain_points_multiplier_sequence": 543 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3725 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "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, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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, "tippecanoe:retain_points_multiplier_sequence": 110 }, "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, "tippecanoe:retain_points_multiplier_sequence": 109 }, "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, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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, "tippecanoe:retain_points_multiplier_sequence": 107 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1664 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1662 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1659 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1660 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4203 }, "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, "tippecanoe:retain_points_multiplier_sequence": 605 }, "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, "tippecanoe:retain_points_multiplier_sequence": 604 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3300 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3301 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2192 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2189 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3302 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2096 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3812 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3303 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3304 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3305 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3810 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2080 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3811 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3308 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3309 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3310 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3311 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3312 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2600 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2587 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3808 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2078 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2079 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3809 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3806 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2586 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2585 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2584 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2582 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2187 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2186 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2183 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "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, "tippecanoe:retain_points_multiplier_sequence": 491 }, "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, "tippecanoe:retain_points_multiplier_sequence": 487 }, "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, "tippecanoe:retain_points_multiplier_sequence": 475 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2181 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2182 }, "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, "tippecanoe:retain_points_multiplier_sequence": 471 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2179 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "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, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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, "tippecanoe:retain_points_multiplier_sequence": 422 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4231 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3878 }, "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, "tippecanoe:retain_points_multiplier_sequence": 421 }, "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, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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, "tippecanoe:retain_points_multiplier_sequence": 410 }, "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, "tippecanoe:retain_points_multiplier_sequence": 411 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3805 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3807 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "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, "tippecanoe:retain_points_multiplier_sequence": 488 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3804 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2073 }, "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, "tippecanoe:retain_points_multiplier_sequence": 489 }, "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, "tippecanoe:retain_points_multiplier_sequence": 490 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2580 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2577 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2578 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2072 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3836 }, "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, "tippecanoe:retain_points_multiplier_sequence": 472 }, "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, "tippecanoe:retain_points_multiplier_sequence": 473 }, "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, "tippecanoe:retain_points_multiplier_sequence": 474 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2071 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3802 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4153 }, "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, "tippecanoe:retain_points_multiplier_sequence": 416 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3803 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2070 }, "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, "tippecanoe:retain_points_multiplier_sequence": 415 }, "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, "tippecanoe:retain_points_multiplier_sequence": 417 }, "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, "tippecanoe:retain_points_multiplier_sequence": 418 }, "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, "tippecanoe:retain_points_multiplier_sequence": 420 }, "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, "tippecanoe:retain_points_multiplier_sequence": 419 }, "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, "tippecanoe:retain_points_multiplier_sequence": 492 }, "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, "tippecanoe:retain_points_multiplier_sequence": 476 }, "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, "tippecanoe:retain_points_multiplier_sequence": 493 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2576 }, "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, "tippecanoe:retain_points_multiplier_sequence": 477 }, "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, "tippecanoe:retain_points_multiplier_sequence": 423 }, "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, "tippecanoe:retain_points_multiplier_sequence": 424 }, "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, "tippecanoe:retain_points_multiplier_sequence": 426 }, "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, "tippecanoe:retain_points_multiplier_sequence": 425 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2599 }, "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, "tippecanoe:retain_points_multiplier_sequence": 647 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2598 }, "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, "tippecanoe:retain_points_multiplier_sequence": 629 }, "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, "tippecanoe:retain_points_multiplier_sequence": 628 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2596 }, "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, "tippecanoe:retain_points_multiplier_sequence": 630 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2595 }, "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, "tippecanoe:retain_points_multiplier_sequence": 631 }, "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, "tippecanoe:retain_points_multiplier_sequence": 632 }, "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, "tippecanoe:retain_points_multiplier_sequence": 633 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2992 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3064 }, "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, "tippecanoe:retain_points_multiplier_sequence": 634 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "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, "tippecanoe:retain_points_multiplier_sequence": 635 }, "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, "tippecanoe:retain_points_multiplier_sequence": 636 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3063 }, "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, "tippecanoe:retain_points_multiplier_sequence": 637 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2594 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2592 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2591 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2590 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2988 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2986 }, "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, "tippecanoe:retain_points_multiplier_sequence": 638 }, "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, "tippecanoe:retain_points_multiplier_sequence": 639 }, "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, "tippecanoe:retain_points_multiplier_sequence": 640 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3391 }, "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, "tippecanoe:retain_points_multiplier_sequence": 641 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3392 }, "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, "tippecanoe:retain_points_multiplier_sequence": 642 }, "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, "tippecanoe:retain_points_multiplier_sequence": 644 }, "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, "tippecanoe:retain_points_multiplier_sequence": 643 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3588 }, "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, "tippecanoe:retain_points_multiplier_sequence": 648 }, "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, "tippecanoe:retain_points_multiplier_sequence": 645 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3673 }, "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, "tippecanoe:retain_points_multiplier_sequence": 646 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3390 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3389 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3388 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3387 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3386 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3385 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1699 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3231 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3232 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3898 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3229 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3230 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3227 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3228 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3225 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3226 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4151 }, "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, "tippecanoe:retain_points_multiplier_sequence": 665 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3208 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1892 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3211 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3209 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3210 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2007 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2008 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3313 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4296 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3316 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3317 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3318 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3319 }, "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, "tippecanoe:retain_points_multiplier_sequence": 606 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3321 }, "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, "tippecanoe:retain_points_multiplier_sequence": 608 }, "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, "tippecanoe:retain_points_multiplier_sequence": 607 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3062 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3320 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2983 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2984 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3322 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3323 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2981 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2982 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2980 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "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, "tippecanoe:retain_points_multiplier_sequence": 570 }, "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, "tippecanoe:retain_points_multiplier_sequence": 569 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2977 }, "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, "tippecanoe:retain_points_multiplier_sequence": 571 }, "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, "tippecanoe:retain_points_multiplier_sequence": 572 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3326 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3327 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3328 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3394 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3838 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3824 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3393 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3329 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3384 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3383 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3331 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3330 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3332 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3333 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3334 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3335 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3381 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3382 }, "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, "tippecanoe:retain_points_multiplier_sequence": 573 }, "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, "tippecanoe:retain_points_multiplier_sequence": 574 }, "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, "tippecanoe:retain_points_multiplier_sequence": 575 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3379 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3380 }, "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, "tippecanoe:retain_points_multiplier_sequence": 576 }, "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, "tippecanoe:retain_points_multiplier_sequence": 577 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3488 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3587 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2973 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2971 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2972 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "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, "tippecanoe:retain_points_multiplier_sequence": 430 }, "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, "tippecanoe:retain_points_multiplier_sequence": 431 }, "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, "tippecanoe:retain_points_multiplier_sequence": 432 }, "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, "tippecanoe:retain_points_multiplier_sequence": 433 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2967 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2968 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2966 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2965 }, "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, "tippecanoe:retain_points_multiplier_sequence": 434 }, "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, "tippecanoe:retain_points_multiplier_sequence": 435 }, "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, "tippecanoe:retain_points_multiplier_sequence": 437 }, "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, "tippecanoe:retain_points_multiplier_sequence": 436 }, "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, "tippecanoe:retain_points_multiplier_sequence": 440 }, "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, "tippecanoe:retain_points_multiplier_sequence": 441 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3378 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3377 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3376 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3375 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3374 }, "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, "tippecanoe:retain_points_multiplier_sequence": 568 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3373 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3371 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3372 }, "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, "tippecanoe:retain_points_multiplier_sequence": 443 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3370 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4128 }, "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, "tippecanoe:retain_points_multiplier_sequence": 445 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3224 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3240 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3213 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4277 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3212 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3337 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3336 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3221 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3223 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3222 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3324 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3325 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3314 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3315 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3306 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3307 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3220 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3233 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3237 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3234 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3236 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3241 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3242 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3238 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3239 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3219 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1734 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3235 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3218 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3216 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3217 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4272 }, "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, "tippecanoe:retain_points_multiplier_sequence": 809 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3694 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3693 }, "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, "tippecanoe:retain_points_multiplier_sequence": 453 }, "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, "tippecanoe:retain_points_multiplier_sequence": 452 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3901 }, "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, "tippecanoe:retain_points_multiplier_sequence": 454 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1736 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3925 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1731 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3695 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3696 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1732 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4273 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4271 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "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, "tippecanoe:retain_points_multiplier_sequence": 673 }, "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, "tippecanoe:retain_points_multiplier_sequence": 669 }, "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, "tippecanoe:retain_points_multiplier_sequence": 672 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4261 }, "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, "tippecanoe:retain_points_multiplier_sequence": 808 }, "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, "tippecanoe:retain_points_multiplier_sequence": 807 }, "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, "tippecanoe:retain_points_multiplier_sequence": 805 }, "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, "tippecanoe:retain_points_multiplier_sequence": 806 }, "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, "tippecanoe:retain_points_multiplier_sequence": 804 }, "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, "tippecanoe:retain_points_multiplier_sequence": 455 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3691 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3692 }, "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, "tippecanoe:retain_points_multiplier_sequence": 456 }, "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, "tippecanoe:retain_points_multiplier_sequence": 803 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1630 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1629 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4262 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "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, "tippecanoe:retain_points_multiplier_sequence": 834 }, "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, "tippecanoe:retain_points_multiplier_sequence": 835 }, "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, "tippecanoe:retain_points_multiplier_sequence": 885 }, "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, "tippecanoe:retain_points_multiplier_sequence": 886 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2784 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3928 }, "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, "tippecanoe:retain_points_multiplier_sequence": 64 }, "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, "tippecanoe:retain_points_multiplier_sequence": 832 }, "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, "tippecanoe:retain_points_multiplier_sequence": 833 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4102 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4084 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1673 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1672 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "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, "tippecanoe:retain_points_multiplier_sequence": 830 }, "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, "tippecanoe:retain_points_multiplier_sequence": 831 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3747 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3858 }, "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, "tippecanoe:retain_points_multiplier_sequence": 829 }, "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, "tippecanoe:retain_points_multiplier_sequence": 252 }, "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, "tippecanoe:retain_points_multiplier_sequence": 826 }, "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, "tippecanoe:retain_points_multiplier_sequence": 827 }, "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, "tippecanoe:retain_points_multiplier_sequence": 828 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3846 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4161 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3751 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "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, "tippecanoe:retain_points_multiplier_sequence": 244 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "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, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 133 }, "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, "tippecanoe:retain_points_multiplier_sequence": 132 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2781 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4197 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "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, "tippecanoe:retain_points_multiplier_sequence": 104 }, "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, "tippecanoe:retain_points_multiplier_sequence": 103 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1657 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2786 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2785 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "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, "tippecanoe:retain_points_multiplier_sequence": 102 }, "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, "tippecanoe:retain_points_multiplier_sequence": 101 }, "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, "tippecanoe:retain_points_multiplier_sequence": 100 }, "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, "tippecanoe:retain_points_multiplier_sequence": 99 }, "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, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4100 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4099 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1656 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1654 }, "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, "tippecanoe:retain_points_multiplier_sequence": 254 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "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, "tippecanoe:retain_points_multiplier_sequence": 256 }, "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, "tippecanoe:retain_points_multiplier_sequence": 255 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1652 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "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, "tippecanoe:retain_points_multiplier_sequence": 237 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3964 }, "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, "tippecanoe:retain_points_multiplier_sequence": 825 }, "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, "tippecanoe:retain_points_multiplier_sequence": 824 }, "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, "tippecanoe:retain_points_multiplier_sequence": 846 }, "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, "tippecanoe:retain_points_multiplier_sequence": 676 }, "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, "tippecanoe:retain_points_multiplier_sequence": 235 }, "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, "tippecanoe:retain_points_multiplier_sequence": 236 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "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, "tippecanoe:retain_points_multiplier_sequence": 240 }, "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, "tippecanoe:retain_points_multiplier_sequence": 239 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3103 }, "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, "tippecanoe:retain_points_multiplier_sequence": 852 }, "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, "tippecanoe:retain_points_multiplier_sequence": 847 }, "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, "tippecanoe:retain_points_multiplier_sequence": 675 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1415 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "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, "tippecanoe:retain_points_multiplier_sequence": 853 }, "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, "tippecanoe:retain_points_multiplier_sequence": 854 }, "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, "tippecanoe:retain_points_multiplier_sequence": 878 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "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, "tippecanoe:retain_points_multiplier_sequence": 678 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3932 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "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, "tippecanoe:retain_points_multiplier_sequence": 677 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4300 }, "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, "tippecanoe:retain_points_multiplier_sequence": 680 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "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, "tippecanoe:retain_points_multiplier_sequence": 681 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "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, "tippecanoe:retain_points_multiplier_sequence": 230 }, "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, "tippecanoe:retain_points_multiplier_sequence": 231 }, "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, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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, "tippecanoe:retain_points_multiplier_sequence": 96 }, "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, "tippecanoe:retain_points_multiplier_sequence": 233 }, "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, "tippecanoe:retain_points_multiplier_sequence": 232 }, "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, "tippecanoe:retain_points_multiplier_sequence": 98 }, "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, "tippecanoe:retain_points_multiplier_sequence": 918 }, "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, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3941 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3942 }, "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, "tippecanoe:retain_points_multiplier_sequence": 238 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1650 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1648 }, "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, "tippecanoe:retain_points_multiplier_sequence": 130 }, "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, "tippecanoe:retain_points_multiplier_sequence": 682 }, "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, "tippecanoe:retain_points_multiplier_sequence": 674 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3462 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3484 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3485 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "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, "tippecanoe:retain_points_multiplier_sequence": 679 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3254 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1886 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3256 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3255 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3257 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2177 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2175 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2176 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2173 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2174 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2066 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2171 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4079 }, "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, "tippecanoe:retain_points_multiplier_sequence": 274 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "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, "tippecanoe:retain_points_multiplier_sequence": 275 }, "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, "tippecanoe:retain_points_multiplier_sequence": 265 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2169 }, "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, "tippecanoe:retain_points_multiplier_sequence": 267 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1999 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4141 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4142 }, "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, "tippecanoe:retain_points_multiplier_sequence": 266 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2065 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3798 }, "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, "tippecanoe:retain_points_multiplier_sequence": 269 }, "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, "tippecanoe:retain_points_multiplier_sequence": 268 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2069 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3801 }, "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, "tippecanoe:retain_points_multiplier_sequence": 327 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3920 }, "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, "tippecanoe:retain_points_multiplier_sequence": 326 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2068 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3800 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2091 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1757 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1756 }, "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, "tippecanoe:retain_points_multiplier_sequence": 328 }, "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, "tippecanoe:retain_points_multiplier_sequence": 330 }, "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, "tippecanoe:retain_points_multiplier_sequence": 329 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "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, "tippecanoe:retain_points_multiplier_sequence": 331 }, "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, "tippecanoe:retain_points_multiplier_sequence": 316 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2067 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3799 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1755 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1753 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1752 }, "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, "tippecanoe:retain_points_multiplier_sequence": 270 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3891 }, "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, "tippecanoe:retain_points_multiplier_sequence": 271 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3892 }, "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, "tippecanoe:retain_points_multiplier_sequence": 272 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1750 }, "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, "tippecanoe:retain_points_multiplier_sequence": 273 }, "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, "tippecanoe:retain_points_multiplier_sequence": 276 }, "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, "tippecanoe:retain_points_multiplier_sequence": 277 }, "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, "tippecanoe:retain_points_multiplier_sequence": 278 }, "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, "tippecanoe:retain_points_multiplier_sequence": 279 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2170 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2167 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2168 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1997 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2063 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2060 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2721 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4193 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4194 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2196 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1994 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2000 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1632 }, "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, "tippecanoe:retain_points_multiplier_sequence": 910 }, "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, "tippecanoe:retain_points_multiplier_sequence": 911 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2723 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2726 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2727 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1637 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2733 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3973 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3654 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3651 }, "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, "tippecanoe:retain_points_multiplier_sequence": 243 }, "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, "tippecanoe:retain_points_multiplier_sequence": 242 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3650 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3649 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3653 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3652 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3648 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3655 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2656 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "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, "tippecanoe:retain_points_multiplier_sequence": 895 }, "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, "tippecanoe:retain_points_multiplier_sequence": 896 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "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, "tippecanoe:retain_points_multiplier_sequence": 875 }, "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, "tippecanoe:retain_points_multiplier_sequence": 874 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3647 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1411 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1416 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1679 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3128 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "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, "tippecanoe:retain_points_multiplier_sequence": 891 }, "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, "tippecanoe:retain_points_multiplier_sequence": 892 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2922 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2921 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2924 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2923 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3358 }, "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, "tippecanoe:retain_points_multiplier_sequence": 848 }, "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, "tippecanoe:retain_points_multiplier_sequence": 849 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3338 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3339 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2548 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1675 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2917 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3480 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3481 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3467 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3468 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3483 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3482 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4086 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3169 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1884 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4119 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1866 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1865 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1863 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1864 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3477 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3478 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2547 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3470 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2544 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4206 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2545 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3469 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3476 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3475 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4208 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3748 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4204 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4216 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4215 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1854 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2554 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1877 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1878 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2555 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1862 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1875 }, "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, "tippecanoe:retain_points_multiplier_sequence": 858 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1390 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3342 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3343 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3361 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3360 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1682 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3465 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1678 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1370 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1425 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3362 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3363 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1562 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1566 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3344 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3345 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1567 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1559 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1538 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1427 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1426 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1568 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1540 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3463 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3464 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2256 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2255 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3466 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2258 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4207 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2261 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2260 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1376 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1856 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1819 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1857 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1858 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1867 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1382 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1868 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1826 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2272 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2271 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1881 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2262 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1554 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1555 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1887 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1837 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3170 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3258 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3776 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3253 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1823 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "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, "tippecanoe:retain_points_multiplier_sequence": 913 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3251 }, "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, "tippecanoe:retain_points_multiplier_sequence": 912 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3252 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2731 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2728 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2729 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3950 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "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, "tippecanoe:retain_points_multiplier_sequence": 908 }, "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, "tippecanoe:retain_points_multiplier_sequence": 909 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2725 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "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, "tippecanoe:retain_points_multiplier_sequence": 689 }, "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, "tippecanoe:retain_points_multiplier_sequence": 692 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2551 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "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, "tippecanoe:retain_points_multiplier_sequence": 693 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1635 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1633 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3963 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "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, "tippecanoe:retain_points_multiplier_sequence": 688 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2552 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1832 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1821 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3757 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "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, "tippecanoe:retain_points_multiplier_sequence": 690 }, "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, "tippecanoe:retain_points_multiplier_sequence": 686 }, "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, "tippecanoe:retain_points_multiplier_sequence": 691 }, "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, "tippecanoe:retain_points_multiplier_sequence": 685 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3910 }, "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, "tippecanoe:retain_points_multiplier_sequence": 687 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3549 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3548 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3049 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3050 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3057 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3058 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3056 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3055 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "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, "tippecanoe:retain_points_multiplier_sequence": 362 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2538 }, "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, "tippecanoe:retain_points_multiplier_sequence": 359 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "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, "tippecanoe:retain_points_multiplier_sequence": 361 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3053 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3054 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1133 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "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, "tippecanoe:retain_points_multiplier_sequence": 379 }, "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, "tippecanoe:retain_points_multiplier_sequence": 380 }, "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, "tippecanoe:retain_points_multiplier_sequence": 391 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2504 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "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, "tippecanoe:retain_points_multiplier_sequence": 820 }, "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, "tippecanoe:retain_points_multiplier_sequence": 819 }, "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, "tippecanoe:retain_points_multiplier_sequence": 821 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2780 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3052 }, "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, "tippecanoe:retain_points_multiplier_sequence": 823 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3975 }, "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, "tippecanoe:retain_points_multiplier_sequence": 822 }, "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, "tippecanoe:retain_points_multiplier_sequence": 307 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3051 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3059 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "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, "tippecanoe:retain_points_multiplier_sequence": 366 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "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, "tippecanoe:retain_points_multiplier_sequence": 310 }, "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, "tippecanoe:retain_points_multiplier_sequence": 311 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3934 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3794 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1404 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3983 }, "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, "tippecanoe:retain_points_multiplier_sequence": 312 }, "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, "tippecanoe:retain_points_multiplier_sequence": 313 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2505 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2508 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2507 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3935 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "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, "tippecanoe:retain_points_multiplier_sequence": 363 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "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, "tippecanoe:retain_points_multiplier_sequence": 370 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "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, "tippecanoe:retain_points_multiplier_sequence": 387 }, "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, "tippecanoe:retain_points_multiplier_sequence": 388 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "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, "tippecanoe:retain_points_multiplier_sequence": 384 }, "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, "tippecanoe:retain_points_multiplier_sequence": 381 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1804 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "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, "tippecanoe:retain_points_multiplier_sequence": 462 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "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, "tippecanoe:retain_points_multiplier_sequence": 470 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1484 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "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, "tippecanoe:retain_points_multiplier_sequence": 377 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "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, "tippecanoe:retain_points_multiplier_sequence": 378 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "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, "tippecanoe:retain_points_multiplier_sequence": 393 }, "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, "tippecanoe:retain_points_multiplier_sequence": 392 }, "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, "tippecanoe:retain_points_multiplier_sequence": 461 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "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, "tippecanoe:retain_points_multiplier_sequence": 332 }, "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, "tippecanoe:retain_points_multiplier_sequence": 333 }, "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, "tippecanoe:retain_points_multiplier_sequence": 317 }, "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, "tippecanoe:retain_points_multiplier_sequence": 318 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2963 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4125 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4124 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2962 }, "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, "tippecanoe:retain_points_multiplier_sequence": 356 }, "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, "tippecanoe:retain_points_multiplier_sequence": 357 }, "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, "tippecanoe:retain_points_multiplier_sequence": 358 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3247 }, "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, "tippecanoe:retain_points_multiplier_sequence": 319 }, "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, "tippecanoe:retain_points_multiplier_sequence": 301 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3246 }, "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, "tippecanoe:retain_points_multiplier_sequence": 302 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2960 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "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, "tippecanoe:retain_points_multiplier_sequence": 284 }, "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, "tippecanoe:retain_points_multiplier_sequence": 280 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "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, "tippecanoe:retain_points_multiplier_sequence": 286 }, "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, "tippecanoe:retain_points_multiplier_sequence": 285 }, "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, "tippecanoe:retain_points_multiplier_sequence": 288 }, "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, "tippecanoe:retain_points_multiplier_sequence": 287 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2961 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "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, "tippecanoe:retain_points_multiplier_sequence": 442 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3369 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3368 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3367 }, "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, "tippecanoe:retain_points_multiplier_sequence": 444 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4136 }, "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, "tippecanoe:retain_points_multiplier_sequence": 321 }, "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, "tippecanoe:retain_points_multiplier_sequence": 320 }, "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, "tippecanoe:retain_points_multiplier_sequence": 303 }, "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, "tippecanoe:retain_points_multiplier_sequence": 304 }, "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, "tippecanoe:retain_points_multiplier_sequence": 323 }, "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, "tippecanoe:retain_points_multiplier_sequence": 322 }, "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, "tippecanoe:retain_points_multiplier_sequence": 306 }, "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, "tippecanoe:retain_points_multiplier_sequence": 447 }, "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, "tippecanoe:retain_points_multiplier_sequence": 446 }, "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, "tippecanoe:retain_points_multiplier_sequence": 448 }, "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, "tippecanoe:retain_points_multiplier_sequence": 449 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3640 }, "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, "tippecanoe:retain_points_multiplier_sequence": 324 }, "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, "tippecanoe:retain_points_multiplier_sequence": 305 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3490 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3489 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3491 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4131 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3912 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3497 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3494 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3644 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3495 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3781 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3492 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3493 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4227 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4130 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3642 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3171 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3826 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4228 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3496 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3643 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3638 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3971 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3839 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3637 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3639 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3645 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3646 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3589 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3590 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3852 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2838 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2114 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3734 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "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, "tippecanoe:retain_points_multiplier_sequence": 991 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3946 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2116 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3947 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1516 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2117 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2118 }, "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, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3945 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3948 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2115 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2122 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2203 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3674 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1772 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1773 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3002 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3675 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3676 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3677 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3680 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3681 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2941 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2841 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2380 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2379 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2375 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2376 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2120 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2943 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2125 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2938 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "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, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2323 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3215 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4135 }, "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, "tippecanoe:retain_points_multiplier_sequence": 439 }, "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, "tippecanoe:retain_points_multiplier_sequence": 438 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3214 }, "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, "tippecanoe:retain_points_multiplier_sequence": 428 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4129 }, "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, "tippecanoe:retain_points_multiplier_sequence": 429 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3042 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3043 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4268 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3243 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4022 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3244 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3276 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3045 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3044 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2013 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3641 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3896 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3275 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3823 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3827 }, "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, "tippecanoe:retain_points_multiplier_sequence": 405 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1488 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3038 }, "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, "tippecanoe:retain_points_multiplier_sequence": 406 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3039 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1490 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2012 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3828 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2011 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3900 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3281 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3280 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3278 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3279 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3277 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3164 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3163 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4065 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3820 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3819 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2616 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2615 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4075 }, "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, "tippecanoe:retain_points_multiplier_sequence": 451 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4076 }, "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, "tippecanoe:retain_points_multiplier_sequence": 450 }, "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, "tippecanoe:retain_points_multiplier_sequence": 403 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3915 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3916 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3785 }, "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, "tippecanoe:retain_points_multiplier_sequence": 407 }, "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, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3786 }, "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, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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, "tippecanoe:retain_points_multiplier_sequence": 409 }, "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, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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, "tippecanoe:retain_points_multiplier_sequence": 408 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1911 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4140 }, "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, "tippecanoe:retain_points_multiplier_sequence": 404 }, "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, "tippecanoe:retain_points_multiplier_sequence": 907 }, "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, "tippecanoe:retain_points_multiplier_sequence": 402 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1913 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1910 }, "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, "tippecanoe:retain_points_multiplier_sequence": 714 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2010 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2622 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3818 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3990 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3991 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3887 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2313 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3730 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3728 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3729 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3727 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2301 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2312 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3726 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3731 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2807 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2797 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2796 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2802 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2309 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2316 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3821 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2629 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3816 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2623 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1793 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3886 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1790 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3817 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2803 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2804 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3992 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3885 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1795 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3884 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2792 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2791 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1796 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3931 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2790 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2659 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2809 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3205 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3207 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3678 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3679 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2946 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3430 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3206 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2940 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2912 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2911 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3752 }, "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, "tippecanoe:retain_points_multiplier_sequence": 735 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1808 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2835 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2842 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1785 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "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, "tippecanoe:retain_points_multiplier_sequence": 736 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4192 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3888 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2839 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1812 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3918 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3919 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3422 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3418 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3429 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3426 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3425 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3431 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3048 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3432 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2322 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2325 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2324 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3047 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3972 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3046 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2327 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3424 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3423 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3417 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3416 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3415 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3428 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3412 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3411 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2668 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2667 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1805 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1806 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1631 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "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, "tippecanoe:retain_points_multiplier_sequence": 520 }, "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, "tippecanoe:retain_points_multiplier_sequence": 551 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "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, "tippecanoe:retain_points_multiplier_sequence": 495 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "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, "tippecanoe:retain_points_multiplier_sequence": 513 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1316 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "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, "tippecanoe:retain_points_multiplier_sequence": 494 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "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, "tippecanoe:retain_points_multiplier_sequence": 509 }, "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, "tippecanoe:retain_points_multiplier_sequence": 510 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1329 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "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, "tippecanoe:retain_points_multiplier_sequence": 507 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "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, "tippecanoe:retain_points_multiplier_sequence": 508 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3943 }, "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, "tippecanoe:retain_points_multiplier_sequence": 523 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2357 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "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, "tippecanoe:retain_points_multiplier_sequence": 553 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1330 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1341 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3958 }, "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, "tippecanoe:retain_points_multiplier_sequence": 557 }, "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, "tippecanoe:retain_points_multiplier_sequence": 558 }, "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, "tippecanoe:retain_points_multiplier_sequence": 563 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3933 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1349 }, "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, "tippecanoe:retain_points_multiplier_sequence": 656 }, "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, "tippecanoe:retain_points_multiplier_sequence": 659 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "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, "tippecanoe:retain_points_multiplier_sequence": 658 }, "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, "tippecanoe:retain_points_multiplier_sequence": 657 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "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, "tippecanoe:retain_points_multiplier_sequence": 655 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1359 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2475 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3420 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4093 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2310 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2311 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2306 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3994 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1710 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1709 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2043 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2044 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2303 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2304 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1575 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3419 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3421 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3414 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3413 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3434 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3427 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2299 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3433 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2298 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2763 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2757 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2762 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2758 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2761 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2638 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3767 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1718 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2626 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1916 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2318 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1776 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1777 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4270 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2617 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3086 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3770 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3085 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1715 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1781 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3855 }, "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, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2319 }, "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, "tippecanoe:retain_points_multiplier_sequence": 60 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2320 }, "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, "tippecanoe:retain_points_multiplier_sequence": 59 }, "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, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3072 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4251 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3075 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3822 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3074 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3081 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1711 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3083 }, "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, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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, "tippecanoe:retain_points_multiplier_sequence": 52 }, "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, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3861 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1784 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1783 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3143 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3862 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4199 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3854 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4198 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2639 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3088 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3087 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3771 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2641 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1719 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3890 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1716 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1717 }, "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, "tippecanoe:retain_points_multiplier_sequence": 721 }, "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, "tippecanoe:retain_points_multiplier_sequence": 718 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2293 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2291 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2296 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3772 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3095 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3094 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3773 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3084 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2294 }, "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, "tippecanoe:retain_points_multiplier_sequence": 988 }, "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, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2292 }, "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, "tippecanoe:retain_points_multiplier_sequence": 990 }, "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, "tippecanoe:retain_points_multiplier_sequence": 723 }, "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, "tippecanoe:retain_points_multiplier_sequence": 722 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "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, "tippecanoe:retain_points_multiplier_sequence": 957 }, "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, "tippecanoe:retain_points_multiplier_sequence": 963 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "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, "tippecanoe:retain_points_multiplier_sequence": 720 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "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, "tippecanoe:retain_points_multiplier_sequence": 719 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "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, "tippecanoe:retain_points_multiplier_sequence": 989 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3172 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3173 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3099 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3775 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3097 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3098 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3774 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3096 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2635 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4160 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2618 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3788 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2454 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2453 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4220 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2747 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "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, "tippecanoe:retain_points_multiplier_sequence": 45 }, "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, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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, "tippecanoe:retain_points_multiplier_sequence": 778 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2632 }, "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, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2445 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1513 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "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, "tippecanoe:retain_points_multiplier_sequence": 783 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2465 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2464 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2754 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2753 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2746 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2745 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "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, "tippecanoe:retain_points_multiplier_sequence": 153 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1741 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1962 }, "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, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2335 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1940 }, "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, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1957 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2330 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2329 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1956 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4196 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2873 }, "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, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2337 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2338 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3853 }, "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, "tippecanoe:retain_points_multiplier_sequence": 155 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3283 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1474 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3769 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2893 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2872 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2341 }, "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, "tippecanoe:retain_points_multiplier_sequence": 942 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2128 }, "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, "tippecanoe:retain_points_multiplier_sequence": 943 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "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, "tippecanoe:retain_points_multiplier_sequence": 945 }, "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, "tippecanoe:retain_points_multiplier_sequence": 946 }, "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, "tippecanoe:retain_points_multiplier_sequence": 940 }, "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, "tippecanoe:retain_points_multiplier_sequence": 941 }, "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, "tippecanoe:retain_points_multiplier_sequence": 938 }, "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, "tippecanoe:retain_points_multiplier_sequence": 939 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2151 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2152 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3524 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3523 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4267 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4260 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3510 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3509 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3572 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3571 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3570 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4083 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4266 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3558 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4189 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2339 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4094 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3553 }, "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, "tippecanoe:retain_points_multiplier_sequence": 951 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3554 }, "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, "tippecanoe:retain_points_multiplier_sequence": 952 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3552 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2336 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2814 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2815 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2818 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3561 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3562 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3538 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3539 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3584 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3585 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3532 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3533 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2816 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2832 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2027 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2029 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2021 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3659 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3656 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3101 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3664 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3115 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3116 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3102 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3119 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3120 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3586 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3658 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3550 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3577 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2693 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3914 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2694 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2811 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2821 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2685 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3565 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2038 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3566 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2037 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3671 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3555 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3894 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2834 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2030 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3667 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3108 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "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, "tippecanoe:retain_points_multiplier_sequence": 993 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3107 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4278 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3127 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3580 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3551 }, "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, "tippecanoe:retain_points_multiplier_sequence": 902 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2827 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3121 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2826 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3845 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2813 }, "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, "tippecanoe:retain_points_multiplier_sequence": 888 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3578 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4276 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1936 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1943 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1942 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3396 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3397 }, "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, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1948 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1949 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3519 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3520 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3513 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1965 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3514 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1950 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1967 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3521 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3522 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3516 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3515 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3395 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3399 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3398 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3874 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2231 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2883 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2888 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2887 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2881 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3292 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3537 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3536 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2230 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2229 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3527 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2240 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3526 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2239 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3504 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3502 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3503 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2226 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2679 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2678 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1938 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1959 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2022 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2025 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3662 }, "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, "tippecanoe:retain_points_multiplier_sequence": 999 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1952 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3660 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2680 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2681 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2026 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1762 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1944 }, "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, "tippecanoe:retain_points_multiplier_sequence": 996 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3663 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1768 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3113 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "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, "tippecanoe:retain_points_multiplier_sequence": 887 }, "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, "tippecanoe:retain_points_multiplier_sequence": 872 }, "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, "tippecanoe:retain_points_multiplier_sequence": 873 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4275 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2822 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3110 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "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, "tippecanoe:retain_points_multiplier_sequence": 866 }, "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, "tippecanoe:retain_points_multiplier_sequence": 867 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3114 }, "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, "tippecanoe:retain_points_multiplier_sequence": 877 }, "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, "tippecanoe:retain_points_multiplier_sequence": 876 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1759 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1960 }, "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, "tippecanoe:retain_points_multiplier_sequence": 815 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3347 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1764 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1758 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3351 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2676 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2691 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2036 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3661 }, "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, "tippecanoe:retain_points_multiplier_sequence": 997 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3670 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2683 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2238 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2237 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2235 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "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, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3668 }, "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, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3666 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3665 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2243 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3125 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3111 }, "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, "tippecanoe:retain_points_multiplier_sequence": 868 }, "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, "tippecanoe:retain_points_multiplier_sequence": 869 }, "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, "tippecanoe:retain_points_multiplier_sequence": 901 }, "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, "tippecanoe:retain_points_multiplier_sequence": 817 }, "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, "tippecanoe:retain_points_multiplier_sequence": 816 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3348 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "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, "tippecanoe:retain_points_multiplier_sequence": 900 }, "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, "tippecanoe:retain_points_multiplier_sequence": 879 }, "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, "tippecanoe:retain_points_multiplier_sequence": 880 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3365 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3354 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4126 }, "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, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2333 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2334 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3795 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3952 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2157 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2147 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2148 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3290 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3291 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3288 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2149 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2150 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3405 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3406 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3408 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3409 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3407 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3404 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3298 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3535 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3286 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3285 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3512 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3511 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3294 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2690 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3877 }, "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, "tippecanoe:retain_points_multiplier_sequence": 147 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3517 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3518 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3528 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3529 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "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, "tippecanoe:retain_points_multiplier_sequence": 143 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2672 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1727 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2677 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3949 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3135 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3134 }, "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, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3140 }, "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, "tippecanoe:retain_points_multiplier_sequence": 90 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "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, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3141 }, "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, "tippecanoe:retain_points_multiplier_sequence": 144 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2684 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3746 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2689 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3136 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "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, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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, "tippecanoe:retain_points_multiplier_sequence": 140 }, "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, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4218 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4250 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2904 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3293 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3299 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2879 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2878 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3122 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2901 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2900 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3284 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3295 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3126 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "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, "tippecanoe:retain_points_multiplier_sequence": 995 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3109 }, "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, "tippecanoe:retain_points_multiplier_sequence": 864 }, "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, "tippecanoe:retain_points_multiplier_sequence": 998 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3112 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1722 }, "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, "tippecanoe:retain_points_multiplier_sequence": 870 }, "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, "tippecanoe:retain_points_multiplier_sequence": 871 }, "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, "tippecanoe:retain_points_multiplier_sequence": 889 }, "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, "tippecanoe:retain_points_multiplier_sequence": 890 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2877 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2876 }, "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, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2897 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "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, "tippecanoe:retain_points_multiplier_sequence": 898 }, "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, "tippecanoe:retain_points_multiplier_sequence": 899 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2874 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3357 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2902 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2898 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2899 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3297 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3296 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3364 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "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, "tippecanoe:retain_points_multiplier_sequence": 865 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3349 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4187 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3669 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3142 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3117 }, "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, "tippecanoe:retain_points_multiplier_sequence": 881 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3133 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3124 }, "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, "tippecanoe:retain_points_multiplier_sequence": 882 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "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, "tippecanoe:retain_points_multiplier_sequence": 994 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3138 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3100 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3131 }, "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, "tippecanoe:retain_points_multiplier_sequence": 894 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3132 }, "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, "tippecanoe:retain_points_multiplier_sequence": 893 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4073 }, "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, "tippecanoe:retain_points_multiplier_sequence": 850 }, "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, "tippecanoe:retain_points_multiplier_sequence": 851 }, "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, "tippecanoe:retain_points_multiplier_sequence": 863 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2779 }, "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, "tippecanoe:retain_points_multiplier_sequence": 818 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1729 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1724 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2846 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4188 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2525 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2526 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3137 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3968 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3359 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3139 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4109 }, "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, "tippecanoe:retain_points_multiplier_sequence": 814 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3880 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2498 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3944 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2480 }, "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2530 }, "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, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3402 }, "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, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4108 }, "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, "tippecanoe:retain_points_multiplier_sequence": 141 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "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, "tippecanoe:retain_points_multiplier_sequence": 142 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1472 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1476 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "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, "tippecanoe:retain_points_multiplier_sequence": 992 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3104 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "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, "tippecanoe:retain_points_multiplier_sequence": 855 }, "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, "tippecanoe:retain_points_multiplier_sequence": 862 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2778 }, "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, "tippecanoe:retain_points_multiplier_sequence": 856 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4122 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3962 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1401 }, "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, "tippecanoe:retain_points_multiplier_sequence": 859 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2523 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2499 }, "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, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2511 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1477 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1460 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3754 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3951 }, "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, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3876 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3250 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3917 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "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, "tippecanoe:retain_points_multiplier_sequence": 56 }, "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, "tippecanoe:retain_points_multiplier_sequence": 57 }, "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, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3929 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3274 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3270 }, "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, "tippecanoe:retain_points_multiplier_sequence": 51 }, "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, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4294 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3269 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1645 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4120 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3268 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3273 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3271 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3272 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4269 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4180 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4292 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2512 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "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, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2390 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "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, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4069 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3403 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3400 }, "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, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4293 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2206 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2455 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4232 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2469 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4138 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3401 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4150 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2204 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4147 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1932 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1641 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1642 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1640 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4248 }, "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, "tippecanoe:retain_points_multiplier_sequence": 148 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4137 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4139 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4146 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1468 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3960 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2473 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1933 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4184 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1934 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1930 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1614 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4145 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4289 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1456 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4281 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1850 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4264 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4265 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3848 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4035 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1814 }, "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, "tippecanoe:retain_points_multiplier_sequence": 697 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1813 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1815 }, "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, "tippecanoe:retain_points_multiplier_sequence": 300 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4116 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4117 }, "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, "tippecanoe:retain_points_multiplier_sequence": 699 }, "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, "tippecanoe:retain_points_multiplier_sequence": 698 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3745 }, "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, "tippecanoe:retain_points_multiplier_sequence": 281 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4118 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4133 }, "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, "tippecanoe:retain_points_multiplier_sequence": 282 }, "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, "tippecanoe:retain_points_multiplier_sequence": 706 }, "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, "tippecanoe:retain_points_multiplier_sequence": 705 }, "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, "tippecanoe:retain_points_multiplier_sequence": 283 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4115 }, "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, "tippecanoe:retain_points_multiplier_sequence": 701 }, "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, "tippecanoe:retain_points_multiplier_sequence": 704 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3438 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3437 }, "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, "tippecanoe:retain_points_multiplier_sequence": 904 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4114 }, "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, "tippecanoe:retain_points_multiplier_sequence": 700 }, "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, "tippecanoe:retain_points_multiplier_sequence": 702 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4113 }, "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, "tippecanoe:retain_points_multiplier_sequence": 905 }, "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, "tippecanoe:retain_points_multiplier_sequence": 903 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4071 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3936 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3937 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2285 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3938 }, "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, "tippecanoe:retain_points_multiplier_sequence": 703 }, "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, "tippecanoe:retain_points_multiplier_sequence": 906 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3939 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2355 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3940 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1901 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3340 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3341 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1687 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3352 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3353 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3355 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1436 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3346 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2949 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3204 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3581 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3366 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3582 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2851 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3579 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3560 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3559 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4279 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4217 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2654 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3576 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3575 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4219 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2253 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2264 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2265 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4205 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3556 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3557 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3487 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2275 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2263 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2277 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2278 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1869 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1547 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1548 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1891 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2270 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1859 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2131 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1557 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1558 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1828 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4159 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1546 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1829 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2252 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1799 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1872 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1519 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2697 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4062 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1831 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4077 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2522 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4230 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2695 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3628 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3356 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2848 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3350 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1685 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2820 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2951 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1747 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2647 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3583 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3479 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3567 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2276 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3568 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2273 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2274 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1742 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1433 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3473 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3471 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1963 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2268 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1746 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3955 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2266 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1955 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1765 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2844 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1761 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2058 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2057 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1763 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2650 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4165 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3980 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3967 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3474 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3472 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4158 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2254 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4064 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2497 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3486 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2488 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4121 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2489 }, "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, "tippecanoe:retain_points_multiplier_sequence": 250 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3563 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1889 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3564 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4080 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3768 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3574 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3573 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3761 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3569 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "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, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4057 }, "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, "tippecanoe:retain_points_multiplier_sequence": 298 }, "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, "tippecanoe:retain_points_multiplier_sequence": 299 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4082 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2520 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2493 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4181 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4280 }, "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, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3860 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4143 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4144 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3248 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3966 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2671 }, "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, "tippecanoe:retain_points_multiplier_sequence": 296 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2406 }, "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, "tippecanoe:retain_points_multiplier_sequence": 297 }, "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, "tippecanoe:retain_points_multiplier_sequence": 294 }, "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, "tippecanoe:retain_points_multiplier_sequence": 295 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1947 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4063 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4182 }, "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, "tippecanoe:retain_points_multiplier_sequence": 263 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2402 }, "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, "tippecanoe:retain_points_multiplier_sequence": 262 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2403 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2401 }, "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, "tippecanoe:retain_points_multiplier_sequence": 249 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3842 }, "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, "tippecanoe:retain_points_multiplier_sequence": 261 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4185 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1587 }, "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, "tippecanoe:retain_points_multiplier_sequence": 290 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1590 }, "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, "tippecanoe:retain_points_multiplier_sequence": 291 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1589 }, "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, "tippecanoe:retain_points_multiplier_sequence": 292 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "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, "tippecanoe:retain_points_multiplier_sequence": 259 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1894 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4283 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1402 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "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, "tippecanoe:retain_points_multiplier_sequence": 983 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3859 }, "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, "tippecanoe:retain_points_multiplier_sequence": 984 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3793 }, "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, "tippecanoe:retain_points_multiplier_sequence": 315 }, "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, "tippecanoe:retain_points_multiplier_sequence": 314 }, "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, "tippecanoe:retain_points_multiplier_sequence": 308 }, "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, "tippecanoe:retain_points_multiplier_sequence": 985 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3981 }, "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, "tippecanoe:retain_points_multiplier_sequence": 309 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2500 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "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, "tippecanoe:retain_points_multiplier_sequence": 986 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3792 }, "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, "tippecanoe:retain_points_multiplier_sequence": 987 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3245 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3837 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2532 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "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, "tippecanoe:retain_points_multiplier_sequence": 968 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4295 }, "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, "tippecanoe:retain_points_multiplier_sequence": 969 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3789 }, "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, "tippecanoe:retain_points_multiplier_sequence": 336 }, "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, "tippecanoe:retain_points_multiplier_sequence": 338 }, "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, "tippecanoe:retain_points_multiplier_sequence": 337 }, "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, "tippecanoe:retain_points_multiplier_sequence": 360 }, "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, "tippecanoe:retain_points_multiplier_sequence": 970 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2516 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3625 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3624 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3597 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3598 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3599 }, "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, "tippecanoe:retain_points_multiplier_sequence": 340 }, "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, "tippecanoe:retain_points_multiplier_sequence": 339 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3600 }, "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, "tippecanoe:retain_points_multiplier_sequence": 353 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3601 }, "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, "tippecanoe:retain_points_multiplier_sequence": 352 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3602 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3603 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3604 }, "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, "tippecanoe:retain_points_multiplier_sequence": 397 }, "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, "tippecanoe:retain_points_multiplier_sequence": 396 }, "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, "tippecanoe:retain_points_multiplier_sequence": 971 }, "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, "tippecanoe:retain_points_multiplier_sequence": 374 }, "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, "tippecanoe:retain_points_multiplier_sequence": 375 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "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, "tippecanoe:retain_points_multiplier_sequence": 382 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3749 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3034 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3750 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3040 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3041 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3035 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3036 }, "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, "tippecanoe:retain_points_multiplier_sequence": 972 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3037 }, "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, "tippecanoe:retain_points_multiplier_sequence": 383 }, "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, "tippecanoe:retain_points_multiplier_sequence": 385 }, "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, "tippecanoe:retain_points_multiplier_sequence": 386 }, "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, "tippecanoe:retain_points_multiplier_sequence": 400 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3605 }, "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, "tippecanoe:retain_points_multiplier_sequence": 401 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3606 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3607 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3608 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3610 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3609 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3611 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3612 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3613 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3614 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3616 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3615 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2410 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4170 }, "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, "tippecanoe:retain_points_multiplier_sequence": 325 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1592 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2412 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2413 }, "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, "tippecanoe:retain_points_multiplier_sequence": 346 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2414 }, "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, "tippecanoe:retain_points_multiplier_sequence": 344 }, "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, "tippecanoe:retain_points_multiplier_sequence": 355 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3814 }, "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, "tippecanoe:retain_points_multiplier_sequence": 345 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2415 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4168 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4179 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4171 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1593 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3957 }, "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, "tippecanoe:retain_points_multiplier_sequence": 350 }, "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, "tippecanoe:retain_points_multiplier_sequence": 351 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1594 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4172 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "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, "tippecanoe:retain_points_multiplier_sequence": 293 }, "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, "tippecanoe:retain_points_multiplier_sequence": 289 }, "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, "tippecanoe:retain_points_multiplier_sequence": 746 }, "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, "tippecanoe:retain_points_multiplier_sequence": 771 }, "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, "tippecanoe:retain_points_multiplier_sequence": 772 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "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, "tippecanoe:retain_points_multiplier_sequence": 770 }, "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, "tippecanoe:retain_points_multiplier_sequence": 769 }, "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, "tippecanoe:retain_points_multiplier_sequence": 342 }, "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, "tippecanoe:retain_points_multiplier_sequence": 341 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1596 }, "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, "tippecanoe:retain_points_multiplier_sequence": 748 }, "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, "tippecanoe:retain_points_multiplier_sequence": 747 }, "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, "tippecanoe:retain_points_multiplier_sequence": 335 }, "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, "tippecanoe:retain_points_multiplier_sequence": 334 }, "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, "tippecanoe:retain_points_multiplier_sequence": 749 }, "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, "tippecanoe:retain_points_multiplier_sequence": 750 }, "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, "tippecanoe:retain_points_multiplier_sequence": 773 }, "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, "tippecanoe:retain_points_multiplier_sequence": 774 }, "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, "tippecanoe:retain_points_multiplier_sequence": 390 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2418 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2420 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4178 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4173 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4177 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2423 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2425 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4174 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4176 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1598 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4214 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1599 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4213 }, "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, "tippecanoe:retain_points_multiplier_sequence": 751 }, "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, "tippecanoe:retain_points_multiplier_sequence": 752 }, "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, "tippecanoe:retain_points_multiplier_sequence": 753 }, "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, "tippecanoe:retain_points_multiplier_sequence": 754 }, "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, "tippecanoe:retain_points_multiplier_sequence": 755 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1601 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2884 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2885 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2653 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3905 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2228 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4285 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4284 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3970 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3974 }, "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, "tippecanoe:retain_points_multiplier_sequence": 651 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4247 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2880 }, "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, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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, "tippecanoe:retain_points_multiplier_sequence": 30 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2891 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3979 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2890 }, "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, "tippecanoe:retain_points_multiplier_sequence": 20 }, "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, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2889 }, "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, "tippecanoe:retain_points_multiplier_sequence": 652 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2496 }, "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, "tippecanoe:retain_points_multiplier_sequence": 653 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3744 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3289 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2646 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2515 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2483 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3287 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2484 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "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, "tippecanoe:retain_points_multiplier_sequence": 217 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2396 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3902 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2524 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4167 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4023 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2399 }, "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, "tippecanoe:retain_points_multiplier_sequence": 227 }, "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, "tippecanoe:retain_points_multiplier_sequence": 228 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2398 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2055 }, "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, "tippecanoe:retain_points_multiplier_sequence": 225 }, "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, "tippecanoe:retain_points_multiplier_sequence": 226 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2481 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "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, "tippecanoe:retain_points_multiplier_sequence": 195 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2518 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2482 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2393 }, "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, "tippecanoe:retain_points_multiplier_sequence": 194 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4288 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4078 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "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, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2391 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2392 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4058 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4059 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "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, "tippecanoe:retain_points_multiplier_sequence": 186 }, "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, "tippecanoe:retain_points_multiplier_sequence": 182 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3857 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1582 }, "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, "tippecanoe:retain_points_multiplier_sequence": 215 }, "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, "tippecanoe:retain_points_multiplier_sequence": 223 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3904 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "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, "tippecanoe:retain_points_multiplier_sequence": 214 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "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, "tippecanoe:retain_points_multiplier_sequence": 248 }, "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, "tippecanoe:retain_points_multiplier_sequence": 246 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1585 }, "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, "tippecanoe:retain_points_multiplier_sequence": 241 }, "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, "tippecanoe:retain_points_multiplier_sequence": 247 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1847 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1846 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1848 }, "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, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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, "tippecanoe:retain_points_multiplier_sequence": 258 }, "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, "tippecanoe:retain_points_multiplier_sequence": 744 }, "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, "tippecanoe:retain_points_multiplier_sequence": 745 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3843 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3740 }, "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, "tippecanoe:retain_points_multiplier_sequence": 743 }, "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, "tippecanoe:retain_points_multiplier_sequence": 257 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4191 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1845 }, "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, "tippecanoe:retain_points_multiplier_sequence": 224 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4166 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3984 }, "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, "tippecanoe:retain_points_multiplier_sequence": 742 }, "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, "tippecanoe:retain_points_multiplier_sequence": 741 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4149 }, "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, "tippecanoe:retain_points_multiplier_sequence": 245 }, "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, "tippecanoe:retain_points_multiplier_sequence": 251 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3454 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3453 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3451 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3452 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4107 }, "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, "tippecanoe:retain_points_multiplier_sequence": 76 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4085 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3756 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4132 }, "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, "tippecanoe:retain_points_multiplier_sequence": 72 }, "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, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1580 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4290 }, "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, "tippecanoe:retain_points_multiplier_sequence": 74 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1842 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4286 }, "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, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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, "tippecanoe:retain_points_multiplier_sequence": 201 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4287 }, "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, "tippecanoe:retain_points_multiplier_sequence": 740 }, "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, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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, "tippecanoe:retain_points_multiplier_sequence": 71 }, "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, "tippecanoe:retain_points_multiplier_sequence": 731 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3889 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4291 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1851 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3847 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4074 }, "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, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4106 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2107 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2108 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3959 }, "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, "tippecanoe:retain_points_multiplier_sequence": 212 }, "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, "tippecanoe:retain_points_multiplier_sequence": 222 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4249 }, "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, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3449 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3450 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3923 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3446 }, "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, "tippecanoe:retain_points_multiplier_sequence": 219 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3447 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3448 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3741 }, "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, "tippecanoe:retain_points_multiplier_sequence": 218 }, "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, "tippecanoe:retain_points_multiplier_sequence": 221 }, "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, "tippecanoe:retain_points_multiplier_sequence": 220 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3866 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4056 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4050 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4021 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3863 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2111 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4039 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3849 }, "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, "tippecanoe:retain_points_multiplier_sequence": 41 }, "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, "tippecanoe:retain_points_multiplier_sequence": 37 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2112 }, "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, "tippecanoe:retain_points_multiplier_sequence": 173 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3445 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3444 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4034 }, "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, "tippecanoe:retain_points_multiplier_sequence": 213 }, "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, "tippecanoe:retain_points_multiplier_sequence": 211 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3988 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3987 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4013 }, "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, "tippecanoe:retain_points_multiplier_sequence": 210 }, "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, "tippecanoe:retain_points_multiplier_sequence": 81 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4014 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4238 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2870 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2871 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3965 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2852 }, "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, "tippecanoe:retain_points_multiplier_sequence": 347 }, "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, "tippecanoe:retain_points_multiplier_sequence": 348 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2854 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2853 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2856 }, "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, "tippecanoe:retain_points_multiplier_sequence": 349 }, "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, "tippecanoe:retain_points_multiplier_sequence": 354 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3629 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3636 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3635 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3630 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4190 }, "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, "tippecanoe:retain_points_multiplier_sequence": 264 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3020 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3006 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "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, "tippecanoe:retain_points_multiplier_sequence": 343 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2097 }, "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, "tippecanoe:retain_points_multiplier_sequence": 367 }, "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, "tippecanoe:retain_points_multiplier_sequence": 369 }, "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, "tippecanoe:retain_points_multiplier_sequence": 368 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3009 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3008 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4243 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4234 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3010 }, "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, "tippecanoe:retain_points_multiplier_sequence": 365 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4098 }, "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, "tippecanoe:retain_points_multiplier_sequence": 364 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2101 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3022 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4242 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4235 }, "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, "tippecanoe:retain_points_multiplier_sequence": 371 }, "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, "tippecanoe:retain_points_multiplier_sequence": 372 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2858 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "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, "tippecanoe:retain_points_multiplier_sequence": 756 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2860 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3631 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3632 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2859 }, "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, "tippecanoe:retain_points_multiplier_sequence": 757 }, "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, "tippecanoe:retain_points_multiplier_sequence": 758 }, "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, "tippecanoe:retain_points_multiplier_sequence": 759 }, "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, "tippecanoe:retain_points_multiplier_sequence": 760 }, "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, "tippecanoe:retain_points_multiplier_sequence": 761 }, "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, "tippecanoe:retain_points_multiplier_sequence": 762 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2861 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2862 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2863 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4274 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2944 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "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, "tippecanoe:retain_points_multiplier_sequence": 499 }, "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, "tippecanoe:retain_points_multiplier_sequence": 498 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3633 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3012 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3634 }, "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, "tippecanoe:retain_points_multiplier_sequence": 469 }, "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, "tippecanoe:retain_points_multiplier_sequence": 463 }, "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, "tippecanoe:retain_points_multiplier_sequence": 464 }, "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, "tippecanoe:retain_points_multiplier_sequence": 467 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3013 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3167 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3168 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3697 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3015 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "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, "tippecanoe:retain_points_multiplier_sequence": 500 }, "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, "tippecanoe:retain_points_multiplier_sequence": 501 }, "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, "tippecanoe:retain_points_multiplier_sequence": 496 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2098 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3911 }, "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, "tippecanoe:retain_points_multiplier_sequence": 497 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "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, "tippecanoe:retain_points_multiplier_sequence": 914 }, "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, "tippecanoe:retain_points_multiplier_sequence": 480 }, "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, "tippecanoe:retain_points_multiplier_sequence": 486 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3698 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3708 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3707 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3699 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4241 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4236 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3787 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "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, "tippecanoe:retain_points_multiplier_sequence": 376 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "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, "tippecanoe:retain_points_multiplier_sequence": 398 }, "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, "tippecanoe:retain_points_multiplier_sequence": 399 }, "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, "tippecanoe:retain_points_multiplier_sequence": 394 }, "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, "tippecanoe:retain_points_multiplier_sequence": 395 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4239 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4240 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4237 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3883 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3989 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3986 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4012 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4015 }, "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, "tippecanoe:retain_points_multiplier_sequence": 160 }, "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, "tippecanoe:retain_points_multiplier_sequence": 158 }, "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, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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, "tippecanoe:retain_points_multiplier_sequence": 157 }, "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, "tippecanoe:retain_points_multiplier_sequence": 389 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3760 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4011 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4036 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4016 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3870 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3410 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4037 }, "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, "tippecanoe:retain_points_multiplier_sequence": 161 }, "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, "tippecanoe:retain_points_multiplier_sequence": 373 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3864 }, "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, "tippecanoe:retain_points_multiplier_sequence": 162 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4103 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "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, "tippecanoe:retain_points_multiplier_sequence": 460 }, "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, "tippecanoe:retain_points_multiplier_sequence": 459 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2382 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2383 }, "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, "tippecanoe:retain_points_multiplier_sequence": 465 }, "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, "tippecanoe:retain_points_multiplier_sequence": 466 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2384 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "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, "tippecanoe:retain_points_multiplier_sequence": 468 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3435 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3436 }, "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, "tippecanoe:retain_points_multiplier_sequence": 683 }, "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, "tippecanoe:retain_points_multiplier_sequence": 684 }, "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, "tippecanoe:retain_points_multiplier_sequence": 502 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3700 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3704 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3705 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3706 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4104 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2387 }, "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, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2389 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2388 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "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, "tippecanoe:retain_points_multiplier_sequence": 481 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3840 }, "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, "tippecanoe:retain_points_multiplier_sequence": 457 }, "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, "tippecanoe:retain_points_multiplier_sequence": 163 }, "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, "tippecanoe:retain_points_multiplier_sequence": 164 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3865 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4010 }, "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, "tippecanoe:retain_points_multiplier_sequence": 458 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4017 }, "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, "tippecanoe:retain_points_multiplier_sequence": 482 }, "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, "tippecanoe:retain_points_multiplier_sequence": 483 }, "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, "tippecanoe:retain_points_multiplier_sequence": 166 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3881 }, "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, "tippecanoe:retain_points_multiplier_sequence": 479 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4081 }, "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, "tippecanoe:retain_points_multiplier_sequence": 165 }, "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, "tippecanoe:retain_points_multiplier_sequence": 478 }, "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, "tippecanoe:retain_points_multiplier_sequence": 485 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4088 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4092 }, "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, "tippecanoe:retain_points_multiplier_sequence": 167 }, "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, "tippecanoe:retain_points_multiplier_sequence": 168 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4009 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3871 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4018 }, "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, "tippecanoe:retain_points_multiplier_sequence": 526 }, "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, "tippecanoe:retain_points_multiplier_sequence": 525 }, "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, "tippecanoe:retain_points_multiplier_sequence": 506 }, "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, "tippecanoe:retain_points_multiplier_sequence": 973 }, "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, "tippecanoe:retain_points_multiplier_sequence": 505 }, "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, "tippecanoe:retain_points_multiplier_sequence": 974 }, "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, "tippecanoe:retain_points_multiplier_sequence": 980 }, "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, "tippecanoe:retain_points_multiplier_sequence": 981 }, "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, "tippecanoe:retain_points_multiplier_sequence": 564 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2569 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2570 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "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, "tippecanoe:retain_points_multiplier_sequence": 975 }, "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, "tippecanoe:retain_points_multiplier_sequence": 976 }, "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, "tippecanoe:retain_points_multiplier_sequence": 511 }, "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, "tippecanoe:retain_points_multiplier_sequence": 512 }, "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, "tippecanoe:retain_points_multiplier_sequence": 516 }, "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, "tippecanoe:retain_points_multiplier_sequence": 517 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3618 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2572 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2573 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2574 }, "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, "tippecanoe:retain_points_multiplier_sequence": 585 }, "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, "tippecanoe:retain_points_multiplier_sequence": 587 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3790 }, "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, "tippecanoe:retain_points_multiplier_sequence": 977 }, "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, "tippecanoe:retain_points_multiplier_sequence": 982 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3791 }, "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, "tippecanoe:retain_points_multiplier_sequence": 586 }, "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, "tippecanoe:retain_points_multiplier_sequence": 579 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3982 }, "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, "tippecanoe:retain_points_multiplier_sequence": 979 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3743 }, "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, "tippecanoe:retain_points_multiplier_sequence": 978 }, "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, "tippecanoe:retain_points_multiplier_sequence": 578 }, "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, "tippecanoe:retain_points_multiplier_sequence": 654 }, "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, "tippecanoe:retain_points_multiplier_sequence": 156 }, "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, "tippecanoe:retain_points_multiplier_sequence": 717 }, "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, "tippecanoe:retain_points_multiplier_sequence": 959 }, "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, "tippecanoe:retain_points_multiplier_sequence": 960 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2997 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3722 }, "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, "tippecanoe:retain_points_multiplier_sequence": 962 }, "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, "tippecanoe:retain_points_multiplier_sequence": 961 }, "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, "tippecanoe:retain_points_multiplier_sequence": 955 }, "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, "tippecanoe:retain_points_multiplier_sequence": 956 }, "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, "tippecanoe:retain_points_multiplier_sequence": 581 }, "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, "tippecanoe:retain_points_multiplier_sequence": 580 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "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, "tippecanoe:retain_points_multiplier_sequence": 583 }, "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, "tippecanoe:retain_points_multiplier_sequence": 584 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2434 }, "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, "tippecanoe:retain_points_multiplier_sequence": 582 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "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, "tippecanoe:retain_points_multiplier_sequence": 964 }, "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, "tippecanoe:retain_points_multiplier_sequence": 965 }, "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, "tippecanoe:retain_points_multiplier_sequence": 958 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4225 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3091 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3092 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4226 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3090 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2437 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2451 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3025 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3617 }, "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, "tippecanoe:retain_points_multiplier_sequence": 529 }, "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, "tippecanoe:retain_points_multiplier_sequence": 530 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "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, "tippecanoe:retain_points_multiplier_sequence": 521 }, "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, "tippecanoe:retain_points_multiplier_sequence": 522 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3619 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3620 }, "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, "tippecanoe:retain_points_multiplier_sequence": 552 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2429 }, "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, "tippecanoe:retain_points_multiplier_sequence": 528 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4175 }, "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, "tippecanoe:retain_points_multiplier_sequence": 527 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4097 }, "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, "tippecanoe:retain_points_multiplier_sequence": 562 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4169 }, "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, "tippecanoe:retain_points_multiplier_sequence": 566 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3621 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3623 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3622 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4134 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4221 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "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, "tippecanoe:retain_points_multiplier_sequence": 930 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4110 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2460 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3627 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3626 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4302 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2472 }, "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, "tippecanoe:retain_points_multiplier_sequence": 931 }, "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, "tippecanoe:retain_points_multiplier_sequence": 514 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1603 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1602 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3977 }, "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, "tippecanoe:retain_points_multiplier_sequence": 515 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1605 }, "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, "tippecanoe:retain_points_multiplier_sequence": 561 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1606 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3976 }, "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, "tippecanoe:retain_points_multiplier_sequence": 518 }, "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, "tippecanoe:retain_points_multiplier_sequence": 519 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "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, "tippecanoe:retain_points_multiplier_sequence": 926 }, "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, "tippecanoe:retain_points_multiplier_sequence": 927 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4111 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4222 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1609 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1617 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1619 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "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, "tippecanoe:retain_points_multiplier_sequence": 928 }, "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, "tippecanoe:retain_points_multiplier_sequence": 929 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4224 }, "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, "tippecanoe:retain_points_multiplier_sequence": 923 }, "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, "tippecanoe:retain_points_multiplier_sequence": 925 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2431 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3029 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3030 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3027 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3028 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4127 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "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, "tippecanoe:retain_points_multiplier_sequence": 716 }, "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, "tippecanoe:retain_points_multiplier_sequence": 715 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3922 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3921 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1620 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1615 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3903 }, "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, "tippecanoe:retain_points_multiplier_sequence": 967 }, "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, "tippecanoe:retain_points_multiplier_sequence": 966 }, "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, "tippecanoe:retain_points_multiplier_sequence": 728 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3282 }, "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, "tippecanoe:retain_points_multiplier_sequence": 726 }, "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, "tippecanoe:retain_points_multiplier_sequence": 725 }, "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, "tippecanoe:retain_points_multiplier_sequence": 724 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2435 }, "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, "tippecanoe:retain_points_multiplier_sequence": 727 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2440 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2201 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2471 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3192 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2467 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2466 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3194 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3193 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3459 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3460 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3189 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4067 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4070 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3182 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2456 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2462 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3180 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3181 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3461 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3186 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3185 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3893 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "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, "tippecanoe:retain_points_multiplier_sequence": 777 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1514 }, "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, "tippecanoe:retain_points_multiplier_sequence": 696 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2752 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2751 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2344 }, "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, "tippecanoe:retain_points_multiplier_sequence": 782 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2741 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2750 }, "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, "tippecanoe:retain_points_multiplier_sequence": 776 }, "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, "tippecanoe:retain_points_multiplier_sequence": 775 }, "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, "tippecanoe:retain_points_multiplier_sequence": 695 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2539 }, "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, "tippecanoe:retain_points_multiplier_sequence": 780 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "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, "tippecanoe:retain_points_multiplier_sequence": 779 }, "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, "tippecanoe:retain_points_multiplier_sequence": 781 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "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, "tippecanoe:retain_points_multiplier_sequence": 784 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2906 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2908 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "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, "tippecanoe:retain_points_multiplier_sequence": 694 }, "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, "tippecanoe:retain_points_multiplier_sequence": 708 }, "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, "tippecanoe:retain_points_multiplier_sequence": 707 }, "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, "tippecanoe:retain_points_multiplier_sequence": 709 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1526 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3930 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "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, "tippecanoe:retain_points_multiplier_sequence": 47 }, "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, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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, "tippecanoe:retain_points_multiplier_sequence": 48 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "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, "tippecanoe:retain_points_multiplier_sequence": 664 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1510 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4195 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3755 }, "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, "tippecanoe:retain_points_multiplier_sequence": 661 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3177 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3178 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3196 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3197 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4186 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3899 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4152 }, "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, "tippecanoe:retain_points_multiplier_sequence": 660 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3184 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3183 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1529 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3544 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3175 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3187 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1525 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1524 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1523 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2218 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2219 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3542 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3543 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3540 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3541 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3546 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3547 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3714 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3716 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3717 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3545 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3721 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3715 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2224 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2225 }, "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, "tippecanoe:retain_points_multiplier_sequence": 503 }, "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, "tippecanoe:retain_points_multiplier_sequence": 763 }, "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, "tippecanoe:retain_points_multiplier_sequence": 764 }, "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, "tippecanoe:retain_points_multiplier_sequence": 504 }, "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, "tippecanoe:retain_points_multiplier_sequence": 765 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "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, "tippecanoe:retain_points_multiplier_sequence": 766 }, "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, "tippecanoe:retain_points_multiplier_sequence": 767 }, "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, "tippecanoe:retain_points_multiplier_sequence": 768 }, "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, "tippecanoe:retain_points_multiplier_sequence": 524 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2865 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4087 }, "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, "tippecanoe:retain_points_multiplier_sequence": 554 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2868 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4223 }, "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, "tippecanoe:retain_points_multiplier_sequence": 924 }, "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, "tippecanoe:retain_points_multiplier_sequence": 785 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2099 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3018 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3019 }, "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, "tippecanoe:retain_points_multiplier_sequence": 565 }, "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, "tippecanoe:retain_points_multiplier_sequence": 559 }, "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, "tippecanoe:retain_points_multiplier_sequence": 560 }, "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, "tippecanoe:retain_points_multiplier_sequence": 793 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3844 }, "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, "tippecanoe:retain_points_multiplier_sequence": 734 }, "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, "tippecanoe:retain_points_multiplier_sequence": 733 }, "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, "tippecanoe:retain_points_multiplier_sequence": 732 }, "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, "tippecanoe:retain_points_multiplier_sequence": 795 }, "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, "tippecanoe:retain_points_multiplier_sequence": 796 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3762 }, "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, "tippecanoe:retain_points_multiplier_sequence": 786 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "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, "tippecanoe:retain_points_multiplier_sequence": 792 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3978 }, "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, "tippecanoe:retain_points_multiplier_sequence": 787 }, "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, "tippecanoe:retain_points_multiplier_sequence": 791 }, "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, "tippecanoe:retain_points_multiplier_sequence": 794 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1968 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1969 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3763 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2609 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3443 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3440 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3439 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3442 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3441 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1972 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1971 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2702 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3199 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3702 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3701 }, "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, "tippecanoe:retain_points_multiplier_sequence": 555 }, "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, "tippecanoe:retain_points_multiplier_sequence": 556 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3703 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "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, "tippecanoe:retain_points_multiplier_sequence": 548 }, "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, "tippecanoe:retain_points_multiplier_sequence": 549 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "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, "tippecanoe:retain_points_multiplier_sequence": 567 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1493 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "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, "tippecanoe:retain_points_multiplier_sequence": 550 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4090 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1500 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3954 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4089 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4091 }, "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, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2053 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2054 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2051 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2718 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3198 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3195 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2716 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2774 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2772 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2773 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1504 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3953 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2049 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1503 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1502 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4020 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4007 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3867 }, "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, "tippecanoe:retain_points_multiplier_sequence": 180 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1491 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3872 }, "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, "tippecanoe:retain_points_multiplier_sequence": 181 }, "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, "tippecanoe:retain_points_multiplier_sequence": 184 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2048 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4028 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4026 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4029 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4025 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2352 }, "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, "tippecanoe:retain_points_multiplier_sequence": 187 }, "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, "tippecanoe:retain_points_multiplier_sequence": 190 }, "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, "tippecanoe:retain_points_multiplier_sequence": 189 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4045 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4006 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4055 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1917 }, "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, "tippecanoe:retain_points_multiplier_sequence": 185 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4244 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4245 }, "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, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4027 }, "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, "tippecanoe:retain_points_multiplier_sequence": 193 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4046 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4005 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4054 }, "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, "tippecanoe:retain_points_multiplier_sequence": 789 }, "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, "tippecanoe:retain_points_multiplier_sequence": 788 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3201 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3200 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3155 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3179 }, "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, "tippecanoe:retain_points_multiplier_sequence": 797 }, "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, "tippecanoe:retain_points_multiplier_sequence": 799 }, "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, "tippecanoe:retain_points_multiplier_sequence": 798 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3176 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3154 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3191 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3190 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3149 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3156 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4282 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4299 }, "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, "tippecanoe:retain_points_multiplier_sequence": 711 }, "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, "tippecanoe:retain_points_multiplier_sequence": 710 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3174 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3188 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3956 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3203 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3202 }, "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, "tippecanoe:retain_points_multiplier_sequence": 738 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4233 }, "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, "tippecanoe:retain_points_multiplier_sequence": 737 }, "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, "tippecanoe:retain_points_multiplier_sequence": 790 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3144 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3145 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3147 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3146 }, "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, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2768 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3596 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2775 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1902 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1903 }, "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, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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, "tippecanoe:retain_points_multiplier_sequence": 84 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1905 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3712 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3713 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3720 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3719 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1906 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1904 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3718 }, "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, "tippecanoe:retain_points_multiplier_sequence": 713 }, "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, "tippecanoe:retain_points_multiplier_sequence": 712 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2213 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2214 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2222 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3162 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3161 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3148 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3153 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2739 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4253 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2734 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2209 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2212 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3151 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3150 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4252 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3157 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3158 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3455 }, "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, "tippecanoe:retain_points_multiplier_sequence": 739 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3458 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3456 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3457 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3003 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3004 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3711 }, "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, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4229 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3766 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3765 }, "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, "tippecanoe:retain_points_multiplier_sequence": 197 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4047 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4053 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4004 }, "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, "tippecanoe:retain_points_multiplier_sequence": 200 }, "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, "tippecanoe:retain_points_multiplier_sequence": 199 }, "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, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2698 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3869 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2699 }, "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, "tippecanoe:retain_points_multiplier_sequence": 172 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4048 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4003 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4052 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3065 }, "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, "tippecanoe:retain_points_multiplier_sequence": 202 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "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, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3764 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2711 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4030 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3070 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4024 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "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, "tippecanoe:retain_points_multiplier_sequence": 204 }, "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, "tippecanoe:retain_points_multiplier_sequence": 205 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3709 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3710 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3873 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4001 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4000 }, "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, "tippecanoe:retain_points_multiplier_sequence": 206 }, "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, "tippecanoe:retain_points_multiplier_sequence": 207 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3595 }, "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, "tippecanoe:retain_points_multiplier_sequence": 208 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3593 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3594 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2737 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4060 }, "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, "tippecanoe:retain_points_multiplier_sequence": 174 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3969 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3998 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3999 }, "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, "tippecanoe:retain_points_multiplier_sequence": 175 }, "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, "tippecanoe:retain_points_multiplier_sequence": 178 }, "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, "tippecanoe:retain_points_multiplier_sequence": 179 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3985 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2738 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4254 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2735 }, "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, "tippecanoe:retain_points_multiplier_sequence": 203 }, "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, "tippecanoe:retain_points_multiplier_sequence": 188 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4049 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3996 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4031 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4051 }, "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, "tippecanoe:retain_points_multiplier_sequence": 191 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3868 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3997 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4002 }, "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, "tippecanoe:retain_points_multiplier_sequence": 183 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1700 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4255 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4061 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1573 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1572 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1703 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3592 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3591 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1571 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1702 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1570 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4095 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4101 }, "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, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4096 }, "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, "tippecanoe:retain_points_multiplier_sequence": 33 }, "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, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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, "tippecanoe:retain_points_multiplier_sequence": 36 }, "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, "tippecanoe:retain_points_multiplier_sequence": 169 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4072 }, "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, "tippecanoe:retain_points_multiplier_sequence": 171 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4033 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4019 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4008 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4032 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3882 }, "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, "tippecanoe:retain_points_multiplier_sequence": 177 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4068 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1498 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2368 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2370 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2369 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4156 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2372 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3796 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "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, "tippecanoe:retain_points_multiplier_sequence": 917 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1501 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1506 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3897 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1507 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1922 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1923 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1517 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1494 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4201 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1496 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2363 }, "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, "tippecanoe:retain_points_multiplier_sequence": 916 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2708 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2709 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2707 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2104 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2348 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2349 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1919 }, "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, "tippecanoe:retain_points_multiplier_sequence": 915 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1918 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2350 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2160 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3723 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3724 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3069 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2706 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2705 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3068 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2613 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3067 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1986 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2362 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1927 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1983 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1921 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2365 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3879 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1979 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1982 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2700 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2113 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2603 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2612 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1989 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1977 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1976 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2602 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1975 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1974 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1973 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3856 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3249 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2999 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3851 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2005 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2003 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2004 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2002 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1733 }, "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, "tippecanoe:retain_points_multiplier_sequence": 670 }, "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, "tippecanoe:retain_points_multiplier_sequence": 671 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4263 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2041 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1627 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3797 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3924 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1707 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1708 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "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, "tippecanoe:retain_points_multiplier_sequence": 413 }, "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, "tippecanoe:retain_points_multiplier_sequence": 414 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1624 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3742 }, "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, "tippecanoe:retain_points_multiplier_sequence": 412 }, "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, "tippecanoe:retain_points_multiplier_sequence": 427 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2795 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2794 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2806 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2801 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2799 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3079 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3825 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3080 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3829 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3077 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3078 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3830 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2356 }, "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, "tippecanoe:retain_points_multiplier_sequence": 662 }, "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, "tippecanoe:retain_points_multiplier_sequence": 663 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1780 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2449 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2450 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1779 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4183 }, "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, "tippecanoe:retain_points_multiplier_sequence": 65 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2346 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2541 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3061 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3060 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2910 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3927 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2744 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2743 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2217 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3780 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3753 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3686 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3777 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3778 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3841 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3784 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3783 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3683 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3684 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3690 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3689 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3687 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3688 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3159 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3160 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3685 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3782 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1992 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1991 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1701 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3995 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3732 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2564 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3735 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2567 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2565 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3907 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3733 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3875 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3737 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3908 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3906 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3738 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2563 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3739 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2562 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3736 }, "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": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2288 }, "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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 index 21f7457c0..c0d3c2fb4 100644 --- a/tests/muni/out/-zg_--retain-points-multiplier_2.json +++ b/tests/muni/out/-zg_--retain-points-multiplier_2.json @@ -16,23827 +16,23827 @@ }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 8 }, "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": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "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": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 4 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 9 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 23 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "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": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 13 }, "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 & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "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": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "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 Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 31 }, "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": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "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": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "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": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "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": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 36 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 37 }, "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 ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "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": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 7 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "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": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 24 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 58 }, "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 & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 41 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "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 & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "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": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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 & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "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": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 43 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "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 & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "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": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "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": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "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": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "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": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "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 Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 76 }, "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": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "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": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "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": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "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": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "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": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "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": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "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/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "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 & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "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": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "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": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 89 }, "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": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "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": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "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": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 71 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "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": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "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 & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "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": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "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": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 20 }, "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": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 90 }, "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": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 5 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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 ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "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": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "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": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 22 }, "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": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "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": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 59 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 141 }, "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": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "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": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 130 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "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": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 236 }, "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 & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "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": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "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": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "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": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 89 }, "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": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "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": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 10 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "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": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "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 & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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 & Lake St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "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": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "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": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "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": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "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 & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "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": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "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": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "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": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "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": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "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": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 178 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "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": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 115 }, "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": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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 & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 175 }, "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": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 202 }, "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": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "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": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 96 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 11 }, "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": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 5 }, "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 & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "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": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "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 & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "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": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "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 & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "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": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 113 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "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": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "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": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "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": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "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": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "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": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "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": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "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": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "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": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "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": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "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 Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "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": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 184 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "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": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "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": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 158 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "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": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 206 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 153 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "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": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "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": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "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": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "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 & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "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": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "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": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "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": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "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 & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "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": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "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": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "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": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "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": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "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": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "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": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "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": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "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": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "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": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "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 & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "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": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "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": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "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": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "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": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "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": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "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": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "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": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "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": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "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/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "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": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "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": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "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": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 233 }, "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 & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "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": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "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": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 188 }, "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": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "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": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "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": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "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": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "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": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "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": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "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": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "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": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "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": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "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": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 217 }, "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": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "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": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "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": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "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": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "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": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "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": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 171 }, "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": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "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": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "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 & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "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": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "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": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "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": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "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": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "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": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "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 & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "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": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "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 & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "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": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "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": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "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": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "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": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "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": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "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": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "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": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "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": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 49 }, "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": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "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": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 228 }, "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": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 218 }, "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&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "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": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 165 }, "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": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "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": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "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": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "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 & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "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": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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 & Keith St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "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 ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "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": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "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": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "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": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "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": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "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 & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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 & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "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": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "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": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "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": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "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": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "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": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "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": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "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": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "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 & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 208 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "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": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 142 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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 & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "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": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 166 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 67 }, "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 & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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 & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 139 }, "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 & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 137 }, "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": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 152 }, "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 & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 16 }, "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": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 46 }, "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": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "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": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 119 }, "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": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "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": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 131 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "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": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "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": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "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 & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "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": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "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": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "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": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 169 }, "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": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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 (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 167 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "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": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "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": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "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 AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "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": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 105 }, "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": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "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": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "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 & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "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": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "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": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 162 }, "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": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "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": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "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": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "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 & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "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": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "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": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "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 & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "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 & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "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": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "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": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "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 & Athens St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "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 & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "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": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "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": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "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": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 71 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "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": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "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": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 173 }, "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": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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 & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "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&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "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": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "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": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 106 }, "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": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "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": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "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": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "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": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 174 }, "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 & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "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": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "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": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "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": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "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": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "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": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "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": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "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": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "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": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "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": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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 & Keith St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "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": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "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": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "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": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "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": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "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": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "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": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "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 ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "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": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "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": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "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": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 51 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 49 }, "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": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "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": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "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": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "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": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "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": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "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": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "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": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "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 & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "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 & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "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 & Allison St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "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": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "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": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "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": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 143 }, "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": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "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": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "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": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 130 }, "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": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 160 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "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": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "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": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 4 }, "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 & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 26 }, "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 & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "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": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "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": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 43 }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 349 }, "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 & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "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": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 323 }, "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": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "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": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 102 }, "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": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "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": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 311 }, "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": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "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 & Anza St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 559 }, "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": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 586 }, "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/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "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": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 291 }, "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": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "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": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "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 & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "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": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "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": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "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": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "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": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "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": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "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": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "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": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "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": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 204 }, "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": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "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": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "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": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "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": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "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": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "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": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 561 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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 & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "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": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 280 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "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": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 84 }, "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": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "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": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "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": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "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": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 591 }, "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 & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "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 & Lake St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "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": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 166 }, "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 & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "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 & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "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": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "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 & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "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": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 296 }, "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": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "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 & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 278 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "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": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 532 }, "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": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "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": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "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": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "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": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "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": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "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": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "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": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "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": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "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": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "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 & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "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": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 356 }, "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": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 470 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "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": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 541 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "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": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 269 }, "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": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "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 & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "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": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "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": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 469 }, "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 & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "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": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 410 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "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": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 467 }, "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 & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "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 & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 447 }, "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 & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "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": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 445 }, "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": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 510 }, "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 & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 94 }, "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": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "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": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 214 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "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": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 564 }, "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": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "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": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 23 }, "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": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "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": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "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": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "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 & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "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": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "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": "ARGUELLO BLVD & EUCLID AVE", "tippecanoe:retain_points_multiplier_sequence": 544 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "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": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 159 }, "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 & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "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": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "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": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "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": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "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": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "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": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "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 & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "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 & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "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": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "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 & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "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": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 267 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "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": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "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": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "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": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "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": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "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": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 217 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "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": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "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": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "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": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 347 }, "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": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "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": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "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 & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "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": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "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": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "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": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "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 & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "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": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "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": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "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": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "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": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "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": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "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": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "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": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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 & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "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": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "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": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "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": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "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": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "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 & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 142 }, "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": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "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": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 154 }, "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": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "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": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 118 }, "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": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "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": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "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": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "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": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "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": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "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": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "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": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "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": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "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": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "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": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "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": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 365 }, "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": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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 & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "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": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 485 }, "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 Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "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": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 486 }, "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": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "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": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 517 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "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": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 548 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "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": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "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": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "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": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 420 }, "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": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 419 }, "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": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "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": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 436 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "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": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "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": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "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": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 515 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "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": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 316 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "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 & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 394 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "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": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "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": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "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": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 407 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "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": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "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": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "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": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 189 }, "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": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "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": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 553 }, "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": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "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": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "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": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "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 & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "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 & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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 & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "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 St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "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 Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "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": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "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": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 318 }, "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": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "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": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "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 AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "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": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 383 }, "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": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "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": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "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 & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 427 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "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": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "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": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 529 }, "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": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "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": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "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": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "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": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 362 }, "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": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "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": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 332 }, "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 & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "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": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "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": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "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": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "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": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "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": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "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": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "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&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 587 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "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": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "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": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "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": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "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": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "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 & Broadway", "tippecanoe:retain_points_multiplier_sequence": 396 }, "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": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "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": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "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": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "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": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "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": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "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": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "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": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "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": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "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": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "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": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "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 & Broadway", "tippecanoe:retain_points_multiplier_sequence": 259 }, "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": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "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": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "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": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "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": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "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 & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "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": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "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 & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "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": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "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": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "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": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "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": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "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": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "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": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 540 }, "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": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "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": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "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": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "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": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "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": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "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 & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "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 & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "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": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "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 & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "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": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "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": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "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": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "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": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "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": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "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": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "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": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 195 }, "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": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "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": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "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/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "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": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "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": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 589 }, "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": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "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": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "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.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "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": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 572 }, "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": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "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": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 575 }, "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": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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 & 13th St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "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 & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "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": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "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": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "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": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 545 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "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": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "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": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 493 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "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": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "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": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "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": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "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": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "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": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "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": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 582 }, "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": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "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": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "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": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "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": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "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": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "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": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "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": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "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": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "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": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "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": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "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": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "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": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "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/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 560 }, "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": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "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": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "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": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "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": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "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": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 536 }, "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": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "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": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "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": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "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": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "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": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "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": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 499 }, "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": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "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": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "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": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "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": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "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": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "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": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "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": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "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": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 457 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "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": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "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 & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "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": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "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": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "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": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "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": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "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": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "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 & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "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": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "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 & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "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": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 551 }, "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": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "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": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "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": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 537 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "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": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "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 & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "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": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "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": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "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": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "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": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "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": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "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": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "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": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "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": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "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": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "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": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "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 St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "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": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "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": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "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": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "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": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 566 }, "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": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "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 & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "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_sequence": 353 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "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": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "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": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "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 & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "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": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "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": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 337 }, "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": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "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": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "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": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "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": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "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": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "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 & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "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": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "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 & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "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": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "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": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "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": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "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": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "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 & Athens St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "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 & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "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": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "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": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "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": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "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": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 299 }, "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": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "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": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "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": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "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": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 109 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "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": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 360 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "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": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "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": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 563 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "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": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "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": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "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 & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 538 }, "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": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "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": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 583 }, "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": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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 & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 440 }, "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&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "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": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 441 }, "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": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 384 }, "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": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "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": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "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": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "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": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 584 }, "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 & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "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": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "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": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "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": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 31 }, "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": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "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": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "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": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "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": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 556 }, "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": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "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": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "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": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "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 & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "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": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "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 & Keith St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "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": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "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": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "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": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "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": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "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": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "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": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "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": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "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 ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "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": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "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": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 225 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "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": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 223 }, "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": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "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": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "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": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "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": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "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": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "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": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 392 }, "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": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "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": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 431 }, "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 & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "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 & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "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 & Allison St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "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": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 335 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "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": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "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": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "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": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "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": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 129 }, "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": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "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": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 462 }, "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": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "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": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "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": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "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": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 498 }, "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": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "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": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 435 }, "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": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "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": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 188 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "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": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 527 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "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": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "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": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "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": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 11 }, "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 & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "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": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "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 & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "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": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 520 }, "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": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 201 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "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 Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 351 }, "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/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "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": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 350 }, "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": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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 ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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 & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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 M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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 & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 6 }, "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 ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "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 & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "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": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 200 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "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": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 104 }, "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": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 220 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "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": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 16 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "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": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 222 }, "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 & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 21 }, "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": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 64 }, "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": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "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": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "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 & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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 & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 12 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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 & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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 & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 95 }, "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": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "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 & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "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": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 143 }, "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&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "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": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 244 }, "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 & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "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": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 137 }, "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 & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "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": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 164 }, "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": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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 & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 243 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "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": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 159 }, "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": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "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": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 153 }, "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": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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 (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 156 }, "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 AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 155 }, "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": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "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": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "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": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "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": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "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": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 268 }, "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": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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_sequence": 117 }, "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": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "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": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 68 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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_sequence": 241 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "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": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 262 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "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": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "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 & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "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": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "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": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 234 }, "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": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "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": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "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": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "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": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "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 & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "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": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "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": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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 & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "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 & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "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": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "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": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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 & Naples St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "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": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "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": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "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 & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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 & University St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "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 & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "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": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 114 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "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 & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "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": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "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": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "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 & Girard St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 157 }, "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": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "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 & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "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": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "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": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "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": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "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": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "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": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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 & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "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": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "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": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "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": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "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": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "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 & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 10 }, "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": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "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": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "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 Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "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": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 257 }, "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": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "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": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "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": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "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": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "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 & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "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": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "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": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "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 ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "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": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "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": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 102 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 76 }, "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": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "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": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 63 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "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": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 73 }, "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": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 62 }, "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": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 266 }, "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": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "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": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 48 }, "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": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "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": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "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": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 32 }, "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 Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "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": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "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": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "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": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "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 & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "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": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 160 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "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 & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "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": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "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": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 33 }, "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": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "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": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 181 }, "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": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "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_sequence": 235 }, "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 & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "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 & Broad St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "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": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "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 & Allison St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "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 & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "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 & Acton St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "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": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "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": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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 & Athens St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "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": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "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 & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "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": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "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 & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "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": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "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": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "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": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 47 }, "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": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 247 }, "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": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 204 }, "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&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "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": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 72 }, "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 & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "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 & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "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": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "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": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "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": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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 & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "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 & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "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": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "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": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 191 }, "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": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "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": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 184 }, "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 & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 189 }, "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": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "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": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "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": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "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 & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "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": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 230 }, "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": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "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": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "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": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "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": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "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": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "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": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "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": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 5 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "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/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 258 }, "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 & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "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": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "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": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 40 }, "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 & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "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": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "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 & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "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": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "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": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 549 }, "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": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 872 }, "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": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "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": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "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 & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "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": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "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 & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "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": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 806 }, "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/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "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": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 376 }, "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": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "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": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 254 }, "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 & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "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": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 729 }, "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": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "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": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 728 }, "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": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 730 }, "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": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 778 }, "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": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "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": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 851 }, "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": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "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": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 727 }, "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": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "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": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "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": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "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": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "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": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 996 }, "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/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 741 }, "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": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 742 }, "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": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "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": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "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": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "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": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "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": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "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": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "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 & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "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": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "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 & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "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": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "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 & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "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": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 993 }, "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": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 691 }, "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": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "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": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "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": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 736 }, "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 & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "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": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 510 }, "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": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "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": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "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": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "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": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "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": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "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": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "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": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "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 & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "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": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "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": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "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": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "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 & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "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": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "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": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 509 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 697 }, "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": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "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": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "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": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "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": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "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": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "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": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "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": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "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": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "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": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "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": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 812 }, "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": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "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 & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 217 }, "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": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "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": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 415 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "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": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "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 & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "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": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "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": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "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 & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "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": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 398 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "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/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 717 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "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 & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 713 }, "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": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "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": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "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": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "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": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "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": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "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": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 357 }, "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": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "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 & Clement St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "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": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 211 }, "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": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "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": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "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": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 356 }, "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": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "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 & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "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 & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "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": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "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": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "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 S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "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": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 554 }, "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 & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "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 & Lake St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "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": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "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": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 354 }, "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": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 410 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "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 & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "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": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "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": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 409 }, "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 & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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 & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "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": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "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": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "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": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "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 & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "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": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1436 }, "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": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 213 }, "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 & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 753 }, "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 & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 752 }, "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": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "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 & Judah St", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "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": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "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": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 712 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "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": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "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": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 883 }, "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 & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "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": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1305 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "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": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 750 }, "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": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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 & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "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": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "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": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "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": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 709 }, "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": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 882 }, "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": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "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": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 708 }, "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": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "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": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 707 }, "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 & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "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": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "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": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "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": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "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": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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 & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 887 }, "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": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "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 & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "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 & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "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": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "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": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "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 & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 885 }, "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": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 884 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "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": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "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": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "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": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "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": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "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": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "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 & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "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": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "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 & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "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": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "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": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 1423 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "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": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 687 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "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 & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "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": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "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": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "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": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "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": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "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": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "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": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "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 & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "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": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "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": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "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": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "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": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "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": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "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": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "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 & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "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": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "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 & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "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": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "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 & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "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 & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "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": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "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 & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "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 & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "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 & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "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": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "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 & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "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": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "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 & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "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 & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "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": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "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": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 577 }, "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": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "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": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "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": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 162 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "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": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1266 }, "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 & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "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": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 235 }, "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": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "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": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 163 }, "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": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "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": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 544 }, "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": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "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": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "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 & California Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "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": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_sequence": 949 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "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": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "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": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "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": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 951 }, "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": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "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 & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 291 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "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": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 290 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "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": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 349 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 52 }, "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": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 947 }, "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": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 37 }, "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": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "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": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 950 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "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": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "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": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 553 }, "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": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "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 & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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 & Clement St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "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": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 348 }, "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 & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "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": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 293 }, "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": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "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": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "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 & EUCLID AVE", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "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": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "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": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "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": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "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": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "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": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "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": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 551 }, "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": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "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": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 401 }, "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": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "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": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "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 & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "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": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "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": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 754 }, "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": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 716 }, "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": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "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": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 98 }, "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": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "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_sequence": 96 }, "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": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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 & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 706 }, "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": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "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_sequence": 114 }, "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": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "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 & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "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": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "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": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "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 & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 583 }, "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": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 582 }, "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": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 581 }, "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 & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "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": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 744 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "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": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 705 }, "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": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "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": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 743 }, "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 & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 681 }, "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": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 683 }, "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": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "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": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "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": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 580 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "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": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "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": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "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 & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 469 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "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": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "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": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "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 & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "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": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "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": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "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": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "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": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "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 & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 556 }, "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": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "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": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "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": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "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 & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "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": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "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": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 871 }, "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 & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "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": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "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": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 869 }, "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 & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "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": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "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": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "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 & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "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 & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 634 }, "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 & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "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": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 632 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "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 & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "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": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "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": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "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 & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "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": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "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": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "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": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "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": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "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": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "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": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "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": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "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": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "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": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "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 & Baker St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "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 & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "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": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 628 }, "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": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "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": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "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": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "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": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "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 & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "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": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "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": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "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": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "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": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "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": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "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": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "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": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "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": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "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": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "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": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "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": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "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": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "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": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "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": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 617 }, "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": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "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": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "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 & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "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": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 241 }, "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": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "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": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "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": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "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": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "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": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "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": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "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": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "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": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 359 }, "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": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "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": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 384 }, "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 & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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": "18th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "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": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "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": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "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": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "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": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "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": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "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_sequence": 288 }, "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": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "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 & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "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": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "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": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "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": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "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": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "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": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "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": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "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 & Castro St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "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": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "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": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "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": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "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": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 602 }, "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": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "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": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "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": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "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": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "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": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "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": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "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 & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "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": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "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": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "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_sequence": 127 }, "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": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "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": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "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": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "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": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 909 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "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": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "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": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "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": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "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 & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "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": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "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": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "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": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "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 Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "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": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "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 t", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "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": "Ulloa St & West Portal Ave Arrive", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "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 Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "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 Station", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "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": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "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": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "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": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "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": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "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": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 347 }, "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": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "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": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 499 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1349 }, "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/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "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 Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "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": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "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": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "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": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 999 }, "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": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 813 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 725 }, "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": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 724 }, "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": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "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": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 4 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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 & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 158 }, "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": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "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": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "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/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "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": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "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": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "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": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 147 }, "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": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "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": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "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 & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 689 }, "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": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 1336 }, "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": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "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": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 894 }, "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": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 893 }, "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 & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "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 & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 146 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "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": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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 & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 644 }, "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 & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 645 }, "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": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "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": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "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 & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "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": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 902 }, "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&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "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": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "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": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "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 & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 961 }, "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": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 955 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 788 }, "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": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 789 }, "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 & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "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": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 896 }, "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 & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "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": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "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": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 959 }, "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": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 897 }, "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 & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 952 }, "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": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 953 }, "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": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "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": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 908 }, "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": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "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": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "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": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "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": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 998 }, "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": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "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": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "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": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "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": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "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": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "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": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 968 }, "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": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 607 }, "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": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1341 }, "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": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 466 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "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": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "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": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "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": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "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": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 794 }, "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": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 910 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "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 & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "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": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "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": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "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": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "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": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "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": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "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": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "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": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "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": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "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": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "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": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "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 & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "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": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1348 }, "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": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "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": "25th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "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 & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "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 & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "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": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "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": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "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 & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "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 & 28th St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "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 St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "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 & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "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 & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "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 Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_sequence": 435 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "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": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "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": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 500 }, "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": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "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 & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 522 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 790 }, "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 & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 791 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 938 }, "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": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 937 }, "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": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "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 & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "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 & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "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": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 1169 }, "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 & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "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": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 786 }, "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 AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "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": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 939 }, "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": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "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": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "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": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "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": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 589 }, "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": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "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": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "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": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "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_sequence": 783 }, "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": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 793 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 19 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "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": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 562 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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_sequence": 1324 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "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": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 1435 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "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": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "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": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 785 }, "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_sequence": 1297 }, "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": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 784 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "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": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "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": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "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": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "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": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "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 & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "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": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "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 & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 898 }, "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": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "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": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "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": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "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": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "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": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "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": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "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": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "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": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "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 & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 935 }, "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": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "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": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "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 St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 667 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 8 }, "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": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "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": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "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 & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "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_sequence": 981 }, "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": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "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": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "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": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 980 }, "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": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "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 & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "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": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 733 }, "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 & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 734 }, "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": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "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": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "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&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "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": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "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": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 321 }, "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": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 797 }, "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": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 963 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "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": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "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": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "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": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 966 }, "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": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "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": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "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": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "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": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "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": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "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": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 918 }, "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": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 962 }, "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": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "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": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "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": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 967 }, "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": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "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": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "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": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "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": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "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 & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "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": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "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": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 660 }, "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": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "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": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 662 }, "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 & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 663 }, "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": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "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": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "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": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "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_sequence": 1202 }, "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 & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "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": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "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": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "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": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "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": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "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": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "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": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "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": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "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": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "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": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "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 & Broadway", "tippecanoe:retain_points_multiplier_sequence": 658 }, "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": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 666 }, "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": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "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": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "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 & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "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": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "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": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "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 & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "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": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "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": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "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": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "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": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "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": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "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": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "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": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 917 }, "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": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "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": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "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": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "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 & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "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": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "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": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "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": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 986 }, "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": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "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": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "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 & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "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": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "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": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "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": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "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": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "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": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "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": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "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": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "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 & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "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": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "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": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "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": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "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": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "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": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "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": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 915 }, "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": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "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": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "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": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "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": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "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": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "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": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "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": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "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": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "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": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "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": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "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": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "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": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "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": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "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": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "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": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "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": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "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 & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "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": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "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": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "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 & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "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 & Bush St", "tippecanoe:retain_points_multiplier_sequence": 982 }, "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 & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "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": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 988 }, "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": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "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": "Post St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "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": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "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": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "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": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "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": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "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": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "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 & SANSOME ST", "tippecanoe:retain_points_multiplier_sequence": 308 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "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": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "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": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "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": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 971 }, "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": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "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 & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "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": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "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": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "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": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 481 }, "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": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "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": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "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": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 946 }, "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_sequence": 299 }, "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": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "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": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "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/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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 & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "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": "Spear St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 20 }, "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": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "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": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 16 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "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": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "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": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "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": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 1465 }, "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 & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 817 }, "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 & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 839 }, "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": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "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": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 755 }, "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": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "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": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "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": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "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.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "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_sequence": 1419 }, "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": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 850 }, "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": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "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": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "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": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "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 & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "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&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "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": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "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": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "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 D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1416 }, "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": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 99 }, "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 & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "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": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "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": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "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": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "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": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "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": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 781 }, "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": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "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": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "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": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "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 & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "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": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "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": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "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": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "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": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "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": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "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": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1218 }, "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": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "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": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "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 & Gough St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "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": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "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": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "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": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "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": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "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": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "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": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 516 }, "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": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 610 }, "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": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "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": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "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": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "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": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "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 & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "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": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "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": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "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 & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "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": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "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": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "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": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "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": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 970 }, "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": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "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": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "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": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "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": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "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": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "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": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "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": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "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": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "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": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "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": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "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": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "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": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "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": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "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": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "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": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "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": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 905 }, "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": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "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": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 856 }, "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 & 7th St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "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 & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "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": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 867 }, "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": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "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": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 635 }, "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": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "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": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "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/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "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": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "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": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "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": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 863 }, "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": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "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": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 866 }, "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": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "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": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "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": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 822 }, "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": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "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": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 861 }, "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": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "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": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "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": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "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": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "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": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "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": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "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": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "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 & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "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": "Church St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "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": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "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": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "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": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "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": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "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": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 865 }, "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": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "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": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "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": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "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": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "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": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "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": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "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": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "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": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "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": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "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": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "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": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "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": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "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": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "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_sequence": 1240 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "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": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "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": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "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": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 823 }, "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": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "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": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 824 }, "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": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "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": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "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": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "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": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "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": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "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": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "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": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "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": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 825 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_sequence": 826 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "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": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "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": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1429 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "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 & 20St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "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": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "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": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "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": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "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": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "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": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 9 }, "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": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "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": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "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": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "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": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "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": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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 & 4th St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "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": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "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": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "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 & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 862 }, "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": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "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": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "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 & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "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": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "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": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "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": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "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 & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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 & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "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": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "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": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "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": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1425 }, "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": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "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 & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "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": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "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": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 655 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1415 }, "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 & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "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 & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "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": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "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": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "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 & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "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": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "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": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "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": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "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": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "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_sequence": 12 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "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": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "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": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 979 }, "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 & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "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 & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "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": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 974 }, "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 & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "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": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "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": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "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": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "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": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 719 }, "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": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "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": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "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": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "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": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "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": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "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": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "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": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "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": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 975 }, "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 & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "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": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "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": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 976 }, "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": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "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": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "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": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "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 & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "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": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "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": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "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": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "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": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "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": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "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": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "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": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "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": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "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": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "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 & 17th St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "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": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "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": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "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": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "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": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "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": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "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": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "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 St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "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": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "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": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "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": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "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": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "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": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 814 }, "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": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "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 & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "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": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "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": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "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": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "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": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "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": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 816 }, "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": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "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": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "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": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "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_sequence": 62 }, "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": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "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": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "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": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "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 & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "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_sequence": 877 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "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": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "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": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "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": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "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": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "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": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "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": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "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": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "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": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 838 }, "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": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 837 }, "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 & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "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": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "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 Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "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": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "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": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "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": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "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 & 24th St", "tippecanoe:retain_points_multiplier_sequence": 829 }, "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": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "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": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "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": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "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": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "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": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "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": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "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": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "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": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "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 & 24th St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "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": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "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": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "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": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "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 & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "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 & Bessie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "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": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 540 }, "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": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "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": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 831 }, "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 & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "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": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "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": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "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 & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "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": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "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 & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "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": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "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": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 890 }, "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": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "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": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "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 & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 834 }, "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": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "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 & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "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": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 846 }, "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": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "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": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "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": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "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 & Naples St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 930 }, "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": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "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": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "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": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 868 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "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": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "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": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "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 & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "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": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "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": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "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": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "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 & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "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": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "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": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "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": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "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 & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "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": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "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": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 759 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "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 & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "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": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "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": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "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": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "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 & 25th St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "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": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "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": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 189 }, "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": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "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": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "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": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "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": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 720 }, "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 & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "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": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 255 }, "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": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "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": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 271 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "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": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 273 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 892 }, "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": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 891 }, "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 & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "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": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "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": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "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 & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "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": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "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": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "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": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 1400 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "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 & Selby St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "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": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 924 }, "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": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "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": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 944 }, "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": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "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": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "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": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "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_sequence": 1326 }, "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 & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "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": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 942 }, "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": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 803 }, "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 & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "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": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 1451 }, "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": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "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": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "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": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "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": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "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": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "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": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "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 & Girard St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "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&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "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_sequence": 1081 }, "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": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "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": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "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": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 940 }, "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": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "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": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "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 & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1273 }, "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": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "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": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "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": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "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": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "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": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 1452 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 756 }, "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 & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "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": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "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": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "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 & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "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": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "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": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "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": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 804 }, "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": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "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_sequence": 71 }, "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 & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "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": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "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": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 922 }, "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": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "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": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 921 }, "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 & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "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": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "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": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "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 & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "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": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "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": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "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": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 928 }, "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 Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "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": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "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": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "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": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "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": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1401 }, "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": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "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 Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "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": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "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 & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "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 & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "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 & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "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": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 811 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "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 & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "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": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "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": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "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": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 807 }, "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": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "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": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 721 }, "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": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "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": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 647 }, "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": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "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 & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "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": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "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 & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 677 }, "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": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "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 & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 654 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "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": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "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": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 675 }, "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": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 739 }, "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": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "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": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 567 }, "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": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "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": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "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": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "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 & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 673 }, "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 ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "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": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "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": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 685 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "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": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 575 }, "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": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 601 }, "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": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 576 }, "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": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "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": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 543 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "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": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 572 }, "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": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 542 }, "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": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "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": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "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": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "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": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "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": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "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": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 330 }, "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": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "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": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "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": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 257 }, "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 Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "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": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "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": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "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 & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 233 }, "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": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 954 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "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 & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 957 }, "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": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "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": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "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": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "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": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "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": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "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 & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "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": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 844 }, "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 & Allison St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "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 & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "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 & Acton St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "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": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 841 }, "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": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 738 }, "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": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "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 & Athens St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 592 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "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": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "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 & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 591 }, "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": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "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": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "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 & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "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": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "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": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "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": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 324 }, "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": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 560 }, "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": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "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": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "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": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "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&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1359 }, "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": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 566 }, "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 & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "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 & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "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": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "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": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "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": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 608 }, "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": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "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 & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "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 & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "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": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "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": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "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": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 595 }, "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": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "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 & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "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": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "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": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "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": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "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": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "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 & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "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": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "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": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "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": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "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": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "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": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "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": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "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": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "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": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "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": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "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": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "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": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 21 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "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/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "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 & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "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": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 280 }, "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": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "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": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "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": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "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": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 279 }, "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 & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "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": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "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 & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "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": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "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": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "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": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 498 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "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 Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 875 }, "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/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "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 Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 874 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "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": "Feature", "properties": { "name": "Metro Powell Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 782 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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_sequence": 1 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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_sequence": 3 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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_sequence": 5 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "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": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 183 }, "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": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "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 & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 505 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 96 }, "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 & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 42 }, "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 NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "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 & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 103 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "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": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 495 }, "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": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "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": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "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": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "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": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 454 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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_sequence": 1 }, "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 Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "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 Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "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 & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "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": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 172 }, "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": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "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": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 24 }, "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": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "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": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "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": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "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&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "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&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "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_sequence": 452 }, "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 & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "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 & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "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 & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 160 }, "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 & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "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": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "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": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 302 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "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_sequence": 251 }, "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": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "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 & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 451 }, "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 & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "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": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 158 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "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 & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "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": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "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": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 163 }, "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": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "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 & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "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": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "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": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "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 LOOP", "tippecanoe:retain_points_multiplier_sequence": 287 }, "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 AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "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": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 286 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "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": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 254 }, "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": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 255 }, "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": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "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 & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 175 }, "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": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "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_sequence": 135 }, "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": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "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": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "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": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 503 }, "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/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "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": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 263 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 334 }, "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": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 206 }, "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": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 443 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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_sequence": 208 }, "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": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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_sequence": 11 }, "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, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 327 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "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/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 116 }, "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": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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_sequence": 329 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 332 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "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": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 113 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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_sequence": 7 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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_sequence": 445 }, "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": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "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_sequence": 349 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "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": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_sequence": 489 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "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": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 488 }, "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": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "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_sequence": 335 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "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 & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "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": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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 & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 486 }, "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": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 435 }, "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 & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "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": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 230 }, "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": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "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 St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "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": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "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 & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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 & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 236 }, "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 & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "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": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "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 & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "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_sequence": 275 }, "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": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "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": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 218 }, "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": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "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_sequence": 281 }, "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": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "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": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "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 & Athens St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "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": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "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": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "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": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "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": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "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": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 246 }, "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": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 250 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "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": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "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": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "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": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "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": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "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": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "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_sequence": 5 }, "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 & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "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": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "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": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "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": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "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": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "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 & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "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": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 205 }, "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 & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "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_sequence": 412 }, "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": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "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": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "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": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "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 & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "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 & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "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": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "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": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "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 & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "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": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "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 & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "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": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "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": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "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": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "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": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "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": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "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 & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 461 }, "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": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "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": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "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 & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "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 Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "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 St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "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": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "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": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "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": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_sequence": 474 }, "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": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "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 Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "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": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "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 & Keith St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "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": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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 & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "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": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "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": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 181 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "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": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 179 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "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 Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 129 }, "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": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 43 }, "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": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "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_sequence": 131 }, "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": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "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": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 496 }, "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": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "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 community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 502 }, "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": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "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 & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 101 }, "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": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "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": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 109 }, "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": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "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": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 165 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "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": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 125 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "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": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 99 }, "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": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "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": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 98 }, "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": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 497 }, "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": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "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": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 184 }, "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 & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "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": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "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": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "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 NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "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": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 501 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "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 RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "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": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "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 & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 185 }, "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": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "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_sequence": 444 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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 & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 441 }, "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, "tippecanoe:retain_points_multiplier_sequence": 312 }, "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": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "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": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "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": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "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": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "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": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 506 }, "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 Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "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": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "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 & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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_sequence": 40 }, "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": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "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": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 371 }, "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": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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_sequence": 314 }, "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": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "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": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "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": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "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": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "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": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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_sequence": 295 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "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 & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "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 & Montana St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "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 & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "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": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "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": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "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": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "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 & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "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": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "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": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "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": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "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 & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "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": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "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": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "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": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "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": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 337 }, "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": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "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_sequence": 436 }, "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 Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "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 & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "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 & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "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 & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "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": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 331 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "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_sequence": 330 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "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_sequence": 322 }, "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 & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "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_sequence": 325 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "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": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "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 & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "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 & Allison St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "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 & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "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 & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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 & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "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 & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "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 & Acton St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "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": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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_sequence": 36 }, "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": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "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": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "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": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "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": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "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": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 222 }, "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": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 191 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "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 & Paris St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "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": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "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 & Athens St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "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 & Brunswick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "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": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "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": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "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": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "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 & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 213 }, "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": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "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 & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "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": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "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": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 243 }, "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": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "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": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "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": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "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 & Munich St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "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": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "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 & Prague St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "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": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "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": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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_sequence": 72 }, "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 & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "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": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "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": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "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_sequence": 319 }, "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": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "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": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "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": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "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": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 74 }, "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, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "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": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "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": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 457 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "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": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "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": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "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_sequence": 379 }, "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": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "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": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "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 & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "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_sequence": 459 }, "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&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "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 & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 123 }, "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": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 373 }, "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": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "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": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 449 }, "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 & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "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_sequence": 344 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "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 & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 343 }, "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": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "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": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "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": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "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 & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 419 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "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": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "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": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "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": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 200 }, "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": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "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 & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "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": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "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_sequence": 397 }, "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 & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "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": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "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 & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "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": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 378 }, "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 & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "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_sequence": 399 }, "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": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "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": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "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": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "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": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "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_sequence": 151 }, "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": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 346 }, "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 & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "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 & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "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": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "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 & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "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": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 361 }, "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": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "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_sequence": 359 }, "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 & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "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": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 364 }, "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": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "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": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "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 & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "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": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "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": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "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": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "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": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 422 }, "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 & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "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": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "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": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 320 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "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": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "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": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 424 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "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": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "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 & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "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": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 421 }, "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": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "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": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "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": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 392 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "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 & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "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": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "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": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "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_sequence": 401 }, "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": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "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": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 350 }, "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": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "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 & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "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": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "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_sequence": 356 }, "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 & SOMERSET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "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 & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 353 }, "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": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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 & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "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": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "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": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "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": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "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/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 476 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "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 & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "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 & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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 & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "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 & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "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": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "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 & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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_sequence": 417 }, "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": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "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 & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "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": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "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": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 477 }, "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": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "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": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 478 }, "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": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "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": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "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 & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "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": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 458 }, "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 & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "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_sequence": 415 }, "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": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "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": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "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 & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "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": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "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": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 18 }, "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": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 15 }, "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": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "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": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 91 }, "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": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "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": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 32 }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "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/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 2094 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "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": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "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": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 658 }, "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": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "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": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 3214 }, "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/Visitor Center", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "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 & Bodsworth Rd", "tippecanoe:retain_points_multiplier_sequence": 3426 }, "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 & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "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": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 3425 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "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/Stables", "tippecanoe:retain_points_multiplier_sequence": 660 }, "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": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 659 }, "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_sequence": 1927 }, "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 & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "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_sequence": 1928 }, "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": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "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": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3399 }, "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": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2170 }, "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": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 3398 }, "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/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "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_sequence": 902 }, "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": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "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": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "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": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "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": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 586 }, "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 Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "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 & Bowley St", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "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 & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3124 }, "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_sequence": 1741 }, "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": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "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/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "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/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "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 Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "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": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "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": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "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": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1737 }, "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_sequence": 1828 }, "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": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "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": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "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": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1742 }, "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": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "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": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "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": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "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 & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "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": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "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)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "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": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1829 }, "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": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1735 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "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": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 530 }, "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": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "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 & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1543 }, "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": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "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": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 3312 }, "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": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "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": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 3313 }, "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": "220 Halleck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "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": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3315 }, "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": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 3314 }, "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": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2025 }, "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": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1541 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3316 }, "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 NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3476 }, "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": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3078 }, "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 & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2391 }, "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 Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "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 YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3477 }, "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": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2394 }, "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": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3475 }, "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": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "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/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1761 }, "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 & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "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": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "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 & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "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, "tippecanoe:retain_points_multiplier_sequence": 113 }, "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": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "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": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "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_sequence": 123 }, "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": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3388 }, "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": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "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": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "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": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3369 }, "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": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "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": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2455 }, "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_sequence": 1753 }, "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": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "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": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1792 }, "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": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "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 & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "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": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "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 St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "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 & Richardson Ave", "tippecanoe:retain_points_multiplier_sequence": 3079 }, "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": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "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": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 2395 }, "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 & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2863 }, "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 & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2885 }, "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": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2862 }, "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_sequence": 2384 }, "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 & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "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_sequence": 2380 }, "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": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "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": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2556 }, "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": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1637 }, "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": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "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": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2592 }, "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": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "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 & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "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_sequence": 768 }, "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": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "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": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "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": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "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_sequence": 3205 }, "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": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2893 }, "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 & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "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 & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "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": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "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": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3430 }, "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": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "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": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "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 & Beach St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "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": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "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": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 3276 }, "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": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "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_sequence": 758 }, "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": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 757 }, "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": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 759 }, "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": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "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": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "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": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 3514 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "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": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "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": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "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": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "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": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2870 }, "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": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 3244 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "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_sequence": 3097 }, "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 & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2865 }, "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 & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2869 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2891 }, "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": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2890 }, "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": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "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_sequence": 1640 }, "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": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "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_sequence": 1108 }, "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": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "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": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "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": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "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": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 717 }, "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": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "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 & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2667 }, "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_sequence": 2672 }, "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": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2671 }, "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": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "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 & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "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": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1657 }, "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 & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3362 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1654 }, "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": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "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": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "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": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2995 }, "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": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "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": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "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": "California St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "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": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3006 }, "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": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "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_sequence": 1258 }, "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": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "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": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "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": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2561 }, "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": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "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 & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "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 & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "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": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "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": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "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": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "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 & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "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": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1406 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "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": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 3189 }, "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": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "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": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 973 }, "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 & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2414 }, "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": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "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": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1940 }, "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": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3335 }, "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": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "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": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "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 & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "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": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 488 }, "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": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "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": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "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": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "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": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "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": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2396 }, "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": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "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": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "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": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 748 }, "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": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 967 }, "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 & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 968 }, "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 & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "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 t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3441 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3432 }, "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": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 965 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 106 }, "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": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "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_sequence": 3440 }, "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 & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "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": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 963 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "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": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "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": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "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_sequence": 3202 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "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": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "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": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "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_sequence": 498 }, "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 & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "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": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1699 }, "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_sequence": 1700 }, "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": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3394 }, "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": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3393 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "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_sequence": 3137 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "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": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3136 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "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 & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "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 & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "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": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "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_sequence": 1696 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3126 }, "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 & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3138 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3140 }, "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_sequence": 1694 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1695 }, "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": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3139 }, "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": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "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": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "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": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 850 }, "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 & California St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "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": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "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": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 849 }, "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": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "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": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 848 }, "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": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "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 & Clement St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "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": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "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_sequence": 1005 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "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": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "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": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 480 }, "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": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "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": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 847 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "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": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 685 }, "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": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "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": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3510 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "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": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "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 & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 846 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 844 }, "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": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 843 }, "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": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "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_sequence": 104 }, "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": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "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_sequence": 475 }, "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": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "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": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_sequence": 3467 }, "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 & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "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": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "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": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "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 & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 962 }, "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, "tippecanoe:retain_points_multiplier_sequence": 960 }, "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 & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 961 }, "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": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 959 }, "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 & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 3511 }, "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": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "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 & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "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 & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "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": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "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 S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3439 }, "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_sequence": 1349 }, "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 St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "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 S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3438 }, "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": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "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_sequence": 435 }, "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 & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "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_sequence": 439 }, "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 & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "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": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "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": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "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": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "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": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 681 }, "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": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "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 & Clement St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "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": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "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_sequence": 999 }, "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": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "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": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 438 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 841 }, "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": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 840 }, "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 & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "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": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 997 }, "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": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "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_sequence": 838 }, "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": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "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": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "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 & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "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": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "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": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 995 }, "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 & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "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": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "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": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "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 & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "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": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "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": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 3050 }, "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 & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "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": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "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 & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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_sequence": 91 }, "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 & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "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": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 89 }, "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 & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "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_sequence": 1343 }, "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 & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "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 & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "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": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3433 }, "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": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 483 }, "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": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "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": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2699 }, "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 & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "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_sequence": 1784 }, "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 & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1785 }, "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 & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "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": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "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": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2700 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "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": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3123 }, "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 & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "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_sequence": 2702 }, "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": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "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_sequence": 1693 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1692 }, "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": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 3122 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2706 }, "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 & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2708 }, "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 & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2709 }, "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": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "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 & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "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": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2116 }, "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_sequence": 3121 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "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 & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "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": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3120 }, "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 & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2115 }, "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 & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2114 }, "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 & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2113 }, "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": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1780 }, "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 & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "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 & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1779 }, "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_sequence": 1777 }, "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": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "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": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 393 }, "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": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "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_sequence": 1775 }, "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": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1776 }, "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": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "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": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "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": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "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": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 3456 }, "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": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3177 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "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 & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "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_sequence": 3119 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "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_sequence": 1687 }, "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": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "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": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "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": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1685 }, "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": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "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 & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "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 & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2109 }, "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": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2108 }, "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_sequence": 1684 }, "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": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3141 }, "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 & Judah St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "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": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "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_sequence": 1683 }, "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": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3116 }, "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": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3392 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3117 }, "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": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "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 & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "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 & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "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": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "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": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "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": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "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": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2107 }, "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": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "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 & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "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": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "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": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "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": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "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": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "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": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "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_sequence": 501 }, "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": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "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 & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "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": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "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 & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "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": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "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": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "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": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "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": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "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": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2444 }, "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": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "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": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2506 }, "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": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "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 & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "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 & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "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 & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "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": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2117 }, "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 & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2443 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "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 & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2441 }, "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": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2440 }, "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 & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "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": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "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": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "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": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "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": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2779 }, "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 & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "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": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "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": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2938 }, "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": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "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": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "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": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "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 & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2776 }, "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 & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2775 }, "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_sequence": 2774 }, "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": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2773 }, "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": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2647 }, "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 & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3192 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "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 & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2646 }, "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 & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "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_sequence": 2642 }, "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": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "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": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 3390 }, "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": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "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": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1536 }, "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 & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "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": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "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": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "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": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "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 & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2711 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "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 & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2714 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "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 & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2716 }, "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": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "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_sequence": 485 }, "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": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "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 & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "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_sequence": 2437 }, "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": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "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": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2718 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2435 }, "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 & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2436 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2434 }, "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": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2433 }, "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": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "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_sequence": 2432 }, "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": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2431 }, "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": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2721 }, "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 & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2722 }, "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": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2723 }, "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_sequence": 2781 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3131 }, "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": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2780 }, "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": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "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": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2772 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2726 }, "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 & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2727 }, "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 & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2728 }, "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": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2729 }, "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_sequence": 2770 }, "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": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "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 & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "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": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "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_sequence": 2768 }, "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": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "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": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "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": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "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": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2937 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2429 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "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 & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "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_sequence": 2426 }, "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 & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "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": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "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 & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "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": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "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 & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "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_sequence": 2423 }, "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": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "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 & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "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 & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "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": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "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_sequence": 2766 }, "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 & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "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 & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2764 }, "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 & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2763 }, "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_sequence": 2761 }, "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": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2762 }, "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_sequence": 354 }, "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 & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3373 }, "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": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "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 & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2641 }, "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": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3496 }, "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": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2631 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2731 }, "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": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2730 }, "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 & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "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": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "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 & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2720 }, "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 & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "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_sequence": 2704 }, "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": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2705 }, "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 & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2638 }, "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 & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "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 & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2648 }, "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 & El Mirasol Pl", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2650 }, "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 & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 2655 }, "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 & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "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 & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "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": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "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": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "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 & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "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 & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2636 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "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": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2635 }, "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": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 656 }, "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_sequence": 3025 }, "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": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "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 Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 362 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3195 }, "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": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 363 }, "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/SFSU", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1404 }, "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": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 3217 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "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": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 3027 }, "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": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1402 }, "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 & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3492 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "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": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "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 & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "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": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 531 }, "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 NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3479 }, "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": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 655 }, "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": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "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": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 653 }, "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": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 652 }, "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": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 364 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3022 }, "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": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 3023 }, "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": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "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 & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "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": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 3480 }, "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": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "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": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 957 }, "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": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "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 & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 679 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 719 }, "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": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 720 }, "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 & California Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2274 }, "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": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "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 & FUNSTON AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "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_sequence": 677 }, "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": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "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 & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 835 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "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 & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 3356 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "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": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 833 }, "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": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "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": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "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": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "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": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "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": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 993 }, "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_sequence": 675 }, "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 & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "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_sequence": 3067 }, "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": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 674 }, "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": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "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": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 673 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "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": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 831 }, "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": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "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_sequence": 3148 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "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": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 829 }, "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": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "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": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 828 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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_sequence": 112 }, "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": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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_sequence": 2272 }, "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": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2273 }, "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_sequence": 87 }, "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": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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 & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "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": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 975 }, "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": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "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": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 976 }, "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": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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 & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3354 }, "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": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 3353 }, "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 & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "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": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "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": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "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": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "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": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "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": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 905 }, "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": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "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": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3247 }, "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 & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "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": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "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": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 536 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "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": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 826 }, "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": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 827 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "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": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 991 }, "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": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "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": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "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": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 988 }, "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 & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 691 }, "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": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 687 }, "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": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "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 & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "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": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "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 & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "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 & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "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": "California St & Maple St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "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 & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "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": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "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 & EUCLID AVE", "tippecanoe:retain_points_multiplier_sequence": 3220 }, "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 & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "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_sequence": 3513 }, "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": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "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": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "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": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "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 & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "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": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "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": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "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": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "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": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "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": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "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": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "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": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1336 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3227 }, "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": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "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": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "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": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "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 & Turk St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "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": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "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 & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 2835 }, "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": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2853 }, "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": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 969 }, "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": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "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": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 970 }, "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": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "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": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "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": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "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 & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "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": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2665 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1772 }, "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 & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "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 & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "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_sequence": 1789 }, "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": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1790 }, "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": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "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": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "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_sequence": 1769 }, "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": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "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": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "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": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3344 }, "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": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 217 }, "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": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1768 }, "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": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 218 }, "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": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "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": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "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": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3383 }, "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": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "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_sequence": 1676 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "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": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 3112 }, "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": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "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_sequence": 1681 }, "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": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3115 }, "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_sequence": 261 }, "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": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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_sequence": 1680 }, "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 & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3114 }, "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": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "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": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "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 & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 262 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "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 & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "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": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "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": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1679 }, "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": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 3113 }, "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 & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "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_sequence": 1418 }, "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": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "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_sequence": 213 }, "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 & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "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_sequence": 3187 }, "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": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "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": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "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 & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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_sequence": 219 }, "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 & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "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": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "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 & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "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_sequence": 1764 }, "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": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1765 }, "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": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "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 & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1673 }, "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": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "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": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1619 }, "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": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "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": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "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": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3423 }, "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": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1788 }, "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 & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "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": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "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": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 740 }, "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": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "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": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "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": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "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_sequence": 1324 }, "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": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "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": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "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": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "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": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3255 }, "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": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_sequence": 2993 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 191 }, "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": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1727 }, "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": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "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": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "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 & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 2992 }, "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": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "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": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2989 }, "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": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2171 }, "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": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 824 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "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": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "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": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "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, "tippecanoe:retain_points_multiplier_sequence": 711 }, "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": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 710 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "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 & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "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": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "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 & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "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": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "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": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2560 }, "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": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "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": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 724 }, "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 & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "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 & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "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": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2386 }, "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": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "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_sequence": 2389 }, "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": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2388 }, "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": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2751 }, "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": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "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_sequence": 2734 }, "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": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2735 }, "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_sequence": 2084 }, "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": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2083 }, "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": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2383 }, "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": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "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": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "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_sequence": 2849 }, "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 & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "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 & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2839 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2852 }, "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": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2851 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "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 St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "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 Street & Shrader Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3346 }, "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": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "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": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2596 }, "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_sequence": 1529 }, "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 & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3366 }, "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_sequence": 1513 }, "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 & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "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": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "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": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2091 }, "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_sequence": 2846 }, "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": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "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": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2090 }, "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": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2841 }, "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": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "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": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "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": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "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": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3435 }, "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": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "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 & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "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": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2845 }, "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": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3437 }, "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": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3068 }, "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": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "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": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3434 }, "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": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3443 }, "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_sequence": 1504 }, "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": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "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": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1524 }, "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": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2088 }, "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": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "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 & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1510 }, "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_sequence": 1523 }, "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": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "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": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "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 & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "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 & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "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": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "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 & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2738 }, "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_sequence": 2754 }, "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": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2753 }, "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": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "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": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2838 }, "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": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "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": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "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": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "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": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "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": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "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_sequence": 1109 }, "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": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "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_sequence": 1161 }, "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": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "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": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2755 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "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 & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "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": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "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": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2739 }, "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": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "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_sequence": 1020 }, "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": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "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": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "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": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "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 & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "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": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "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_sequence": 1149 }, "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": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "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": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "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": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2837 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "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 & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "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 & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3436 }, "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_sequence": 1841 }, "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": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "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 & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "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": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1506 }, "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": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "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 & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "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": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "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 & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "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": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "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": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "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": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "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": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "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": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1484 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "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": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "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 & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "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": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "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": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1842 }, "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": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "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 & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "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_sequence": 1532 }, "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": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "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": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "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 & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "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_sequence": 1493 }, "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 & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "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": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "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": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "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_sequence": 2666 }, "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": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3094 }, "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": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "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": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 872 }, "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": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "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": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "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 & Waller St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "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": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "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_sequence": 742 }, "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": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 741 }, "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": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2662 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2229 }, "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 & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "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": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2228 }, "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": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 3235 }, "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": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "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": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "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": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 868 }, "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_sequence": 2225 }, "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": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2226 }, "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 & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 873 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 865 }, "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": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "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 & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "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": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "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": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "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": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "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 & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "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": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "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": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 3246 }, "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": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "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": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "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 & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "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 & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "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": "Haight St & Buena Vista West Ave", "tippecanoe:retain_points_multiplier_sequence": 1479 }, "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": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "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_sequence": 854 }, "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 & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "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": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 860 }, "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 & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 551 }, "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 & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 547 }, "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 & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "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 & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 546 }, "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": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 548 }, "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 & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2906 }, "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": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "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": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2500 }, "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 & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2499 }, "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": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "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": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "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": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "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": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2298 }, "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": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "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": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 955 }, "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": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "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": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "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": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 851 }, "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": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 928 }, "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": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 856 }, "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": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "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": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 857 }, "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": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2497 }, "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_sequence": 932 }, "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": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 931 }, "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": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 922 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 940 }, "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": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "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": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "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": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 921 }, "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 & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "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": "18th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "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": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 938 }, "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_sequence": 858 }, "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": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "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": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 923 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 934 }, "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 & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 933 }, "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": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "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": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 924 }, "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": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 925 }, "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 Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 667 }, "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": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "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": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "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": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2496 }, "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_sequence": 670 }, "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": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "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": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 247 }, "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 & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "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": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_sequence": 2502 }, "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": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "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_sequence": 1046 }, "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": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "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": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "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": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "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 St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3221 }, "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": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3109 }, "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": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3264 }, "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_sequence": 250 }, "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": "14th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "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 & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "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": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "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": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2046 }, "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": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "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 & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "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": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 3222 }, "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": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "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": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "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 & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2065 }, "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": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "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": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "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_sequence": 935 }, "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 & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "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": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 941 }, "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": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "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 & Market St", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "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": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "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": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "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": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "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": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "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": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "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_sequence": 1193 }, "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": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "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": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "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": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "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": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "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": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "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": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "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_sequence": 1036 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "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": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "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": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "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": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "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": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "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 & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "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": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "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": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "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_sequence": 2420 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "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 & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 3370 }, "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": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "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_sequence": 284 }, "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 & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "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": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "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": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "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": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "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": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "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": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "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": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2445 }, "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": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "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": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "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": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "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 & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "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 & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "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 & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "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": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "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": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "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": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2759 }, "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": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "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": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3379 }, "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": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "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_sequence": 243 }, "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": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "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": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "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": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "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_sequence": 358 }, "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 & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "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": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "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": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2983 }, "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": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "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": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "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 & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2856 }, "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 & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "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 Leave", "tippecanoe:retain_points_multiplier_sequence": 3375 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3204 }, "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": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2861 }, "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 Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "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 Station", "tippecanoe:retain_points_multiplier_sequence": 2859 }, "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 Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3099 }, "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": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2858 }, "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 t", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3453 }, "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": "Ulloa St & West Portal Ave Arrive", "tippecanoe:retain_points_multiplier_sequence": 3374 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "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 Station Inbound", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "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 Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3454 }, "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 Station", "tippecanoe:retain_points_multiplier_sequence": 2860 }, "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 & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2986 }, "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_sequence": 2981 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3143 }, "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_sequence": 2980 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2982 }, "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": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2988 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "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": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2940 }, "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 Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3154 }, "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": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "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": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "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": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 3056 }, "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": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 822 }, "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": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 806 }, "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": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "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": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 823 }, "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": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2173 }, "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_sequence": 3231 }, "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": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3232 }, "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": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "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": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "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": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3230 }, "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": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 3233 }, "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": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "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 Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "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": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "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": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 3008 }, "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 Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "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": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3009 }, "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 & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 3010 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3012 }, "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": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3013 }, "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 Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2401 }, "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 Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 2405 }, "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": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2402 }, "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 & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "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": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "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": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "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": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1724 }, "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": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "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": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2403 }, "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 & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "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": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "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 & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "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": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "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", "tippecanoe:retain_points_multiplier_sequence": 8 }, "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": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "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": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2633 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "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": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 349 }, "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": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2632 }, "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_sequence": 339 }, "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": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "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_sequence": 2488 }, "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": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2489 }, "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": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3489 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3300 }, "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": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "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/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2681 }, "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": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2490 }, "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": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "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/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2984 }, "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 AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3190 }, "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": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2680 }, "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": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3133 }, "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": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 323 }, "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": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "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": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "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": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "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": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2485 }, "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": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "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_sequence": 1635 }, "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 & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "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": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 3194 }, "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": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2147 }, "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 & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2685 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2683 }, "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 Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 2684 }, "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": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "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": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "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": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3334 }, "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_sequence": 2159 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3130 }, "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 & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2158 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "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": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3342 }, "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_sequence": 361 }, "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 & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "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 & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 321 }, "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": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3207 }, "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": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3208 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "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_sequence": 4 }, "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 Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3103 }, "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 Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 325 }, "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 & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "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": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "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": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3382 }, "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": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 322 }, "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": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "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": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 320 }, "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": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1550 }, "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": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 573 }, "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": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "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": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "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 & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3129 }, "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": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 2161 }, "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, "tippecanoe:retain_points_multiplier_sequence": 986 }, "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&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 3270 }, "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&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3271 }, "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_sequence": 3184 }, "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 & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "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": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 1888 }, "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": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "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 & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 3054 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3052 }, "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": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3053 }, "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 & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "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 & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "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": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1887 }, "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": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3051 }, "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 & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "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_sequence": 2289 }, "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": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2288 }, "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 & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "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 & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "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": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "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 & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2160 }, "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 & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 2144 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2148 }, "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": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 3127 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "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": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "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 & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "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 & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "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 & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "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": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2151 }, "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": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 3128 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2294 }, "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": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2295 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2150 }, "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_sequence": 2137 }, "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": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2149 }, "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 & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 3183 }, "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 & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "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": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 1451 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "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 & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "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": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2283 }, "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": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "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": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "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 & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "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": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "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": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "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": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2299 }, "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 & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2625 }, "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": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "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": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "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": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "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": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 3011 }, "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": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2406 }, "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": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2809 }, "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": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2626 }, "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": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2400 }, "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": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "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": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 958 }, "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": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2376 }, "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": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 937 }, "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": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "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": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 927 }, "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": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "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": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_sequence": 930 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "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": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "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": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "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": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "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": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "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": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "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": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "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": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 3422 }, "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": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3185 }, "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": "Portola Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "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": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2318 }, "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": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "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 & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "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": "Clipper St & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 853 }, "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": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3210 }, "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": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "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": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 979 }, "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": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 2802 }, "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": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "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 & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2808 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "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": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2804 }, "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": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2493 }, "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": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2810 }, "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": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "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": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "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": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "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": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 3254 }, "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": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "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": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "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": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1894 }, "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_sequence": 2179 }, "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": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "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 & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2803 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "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 & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2797 }, "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 & Bella Vista Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2796 }, "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": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2807 }, "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": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2794 }, "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_sequence": 2182 }, "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": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2181 }, "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": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "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": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "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": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "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": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1470 }, "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": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "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": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 444 }, "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": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "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": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "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": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "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": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "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": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "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": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "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": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "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": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "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": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "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": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "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 & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "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_sequence": 1074 }, "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": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "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 & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "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": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "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": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "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": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "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 & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "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_sequence": 3228 }, "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": "24th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "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": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "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": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "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": "25th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "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 & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "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 & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "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_sequence": 1083 }, "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 & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "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 & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "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 & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "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": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "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": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3241 }, "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 & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "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": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "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 Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "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 & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "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 & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "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 & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "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 St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "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 Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "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 St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "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 & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "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 Way", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "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 Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "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": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "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 & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "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": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "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 & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "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 & Arbor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "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_sequence": 1102 }, "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 & Sussex St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "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": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "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": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "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": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "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": "164 Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "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": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "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": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "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 & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1272 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "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": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "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 & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1881 }, "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": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "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 & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "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": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2253 }, "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": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "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": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1659 }, "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": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "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": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "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": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1879 }, "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": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "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_sequence": 2799 }, "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": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2801 }, "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": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2795 }, "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 & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "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": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 2806 }, "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": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "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": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2811 }, "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 & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1875 }, "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": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1873 }, "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)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2256 }, "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": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "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": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2145 }, "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 LOOP", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "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 AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2251 }, "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": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3085 }, "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": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "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": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "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": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "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": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "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": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1554 }, "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 & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "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": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "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_sequence": 1433 }, "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": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "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": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "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": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "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&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3490 }, "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/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2140 }, "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": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3088 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2529 }, "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": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "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": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "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": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 3158 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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_sequence": 1892 }, "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": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "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_sequence": 47 }, "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, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "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/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "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": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "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_sequence": 2522 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "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": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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_sequence": 42 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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_sequence": 3162 }, "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": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "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_sequence": 2573 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3163 }, "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": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_sequence": 3429 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3157 }, "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": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 3428 }, "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": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2155 }, "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_sequence": 2530 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "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 & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "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": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "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": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "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 & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "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 & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "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": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1872 }, "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_sequence": 3090 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "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 & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3091 }, "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": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "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": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "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": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "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": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "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": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 580 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "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": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "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 & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 777 }, "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": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 781 }, "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": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "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": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "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": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "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": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "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": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "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_sequence": 2599 }, "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": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2600 }, "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 & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "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_sequence": 2537 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2538 }, "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 & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 3092 }, "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": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "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_sequence": 2152 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "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 & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 3397 }, "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": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2141 }, "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": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 3105 }, "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 & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "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": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "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": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "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 St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3446 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "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": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 36 }, "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": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "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 & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "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 & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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 & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "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 & Francis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "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": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "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": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "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": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "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 & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "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": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "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 & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "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_sequence": 2241 }, "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": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2240 }, "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": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "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": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "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 St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "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": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "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 St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "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 OUT OB", "tippecanoe:retain_points_multiplier_sequence": 11 }, "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, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 20 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1901 }, "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": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1900 }, "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": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "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": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "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": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1902 }, "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 & Bay St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "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": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "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": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "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 & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3427 }, "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": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "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": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "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": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1907 }, "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": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3155 }, "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": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "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": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "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": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2362 }, "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 & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "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": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "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": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "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": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 764 }, "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": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "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": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "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": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "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 & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "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_sequence": 762 }, "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 & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 763 }, "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": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "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": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2884 }, "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": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "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": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3478 }, "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_sequence": 2872 }, "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": "Union St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2871 }, "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_sequence": 2925 }, "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": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2924 }, "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": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3345 }, "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": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3487 }, "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": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3420 }, "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_sequence": 1908 }, "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": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "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": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2305 }, "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": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "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": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 771 }, "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": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2910 }, "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": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 772 }, "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": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1906 }, "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_sequence": 2301 }, "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 & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "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": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "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": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2917 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "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": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "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": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2935 }, "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": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "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": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "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 & Union St", "tippecanoe:retain_points_multiplier_sequence": 2314 }, "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 & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2303 }, "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": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "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 & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "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 & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "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": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "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 & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2997 }, "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": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "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 & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "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 & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "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 & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "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": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "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": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2936 }, "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": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "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": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "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": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2907 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2200 }, "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_sequence": 3206 }, "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": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2201 }, "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 & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2300 }, "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": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "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_sequence": 2192 }, "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": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "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_sequence": 2920 }, "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": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2921 }, "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": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "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": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "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": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2911 }, "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": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "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": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "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": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2316 }, "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": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3002 }, "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": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "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": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "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": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2544 }, "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": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 821 }, "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": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "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 & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2931 }, "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": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2908 }, "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": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 733 }, "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": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "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": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "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": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2311 }, "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 & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3147 }, "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": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "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": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2930 }, "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": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3495 }, "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 & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "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 & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1576 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "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": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "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 St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "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 OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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 IN IB", "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1580 }, "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": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1581 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2879 }, "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": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "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": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "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": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2875 }, "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": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "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": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2876 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "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 & Green St", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "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": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1596 }, "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_sequence": 2881 }, "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 & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "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": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2877 }, "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 & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "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": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "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": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "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": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2785 }, "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 & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 890 }, "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 & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 3173 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "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": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 885 }, "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": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "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": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2356 }, "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 & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "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": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "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": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "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": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2355 }, "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": "Stockton St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2694 }, "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": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "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_sequence": 1815 }, "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": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1814 }, "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_sequence": 2887 }, "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": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "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 & Union St", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "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": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "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": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 891 }, "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_sequence": 2868 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "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": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2867 }, "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 & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "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_sequence": 1812 }, "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": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "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": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1572 }, "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 & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "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": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2186 }, "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_sequence": 1590 }, "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": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1589 }, "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_sequence": 1645 }, "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 & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "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": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "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": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "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": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "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": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "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": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2190 }, "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": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "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": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "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": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "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": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "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": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "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": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "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": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "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": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "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 & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "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_sequence": 708 }, "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": "California St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 709 }, "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": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3494 }, "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": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "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": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2546 }, "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 & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1592 }, "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": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "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": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "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": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "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": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "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": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "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": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "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": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1591 }, "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": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 663 }, "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": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2741 }, "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": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "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": "Sutter St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2744 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2187 }, "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 & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2199 }, "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": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2198 }, "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": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "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 & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2999 }, "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": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3004 }, "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": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 820 }, "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": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "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_sequence": 1822 }, "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 & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1821 }, "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_sequence": 1819 }, "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": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "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": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1649 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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_sequence": 2195 }, "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": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "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": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2359 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 26 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3001 }, "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": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 3000 }, "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": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "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 & Mason St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "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": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 817 }, "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": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2547 }, "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 & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "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": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "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 & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "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": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "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": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "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": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "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 & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "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": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "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 & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2757 }, "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": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2747 }, "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": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3371 }, "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": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "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": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1904 }, "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": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "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_sequence": 3110 }, "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": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3237 }, "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 & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1747 }, "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": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "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 & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2693 }, "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": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2691 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "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": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "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": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2790 }, "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_sequence": 2791 }, "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": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2792 }, "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": "COIT TOWER", "tippecanoe:retain_points_multiplier_sequence": 864 }, "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": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "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": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2697 }, "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": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "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": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2689 }, "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 & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "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": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 889 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2874 }, "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": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "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": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "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 & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 3176 }, "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": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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 & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2878 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2888 }, "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": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2889 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "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": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 877 }, "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": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "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 & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "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": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "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": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "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": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3234 }, "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": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "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": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "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": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "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": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "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 & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "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": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "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": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "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": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "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 & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "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": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "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": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "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": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "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": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "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": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "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": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3444 }, "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 & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3471 }, "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 & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2695 }, "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": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2698 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "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 & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2353 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2370 }, "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": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "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": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "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": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "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": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "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": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 882 }, "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": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 883 }, "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": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 810 }, "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": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "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": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "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": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "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 & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "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": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 706 }, "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 & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "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": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "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_sequence": 2352 }, "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": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "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 & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 19 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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 & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 18 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "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": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "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": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 730 }, "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_sequence": 2350 }, "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": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2349 }, "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": "Sutter St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2750 }, "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 & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "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_sequence": 2367 }, "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": "Powell St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2368 }, "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": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2696 }, "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": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "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": "Post St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "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": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "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 St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "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": "POST & GRANT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3419 }, "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": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "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": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3003 }, "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": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "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": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2552 }, "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": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "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": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "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": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 716 }, "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 & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "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": "Clay St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "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 & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2568 }, "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": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2562 }, "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": "California St & SANSOME ST", "tippecanoe:retain_points_multiplier_sequence": 726 }, "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": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2563 }, "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 & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 725 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 689 }, "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 & Battery St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "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": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "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": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "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": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 666 }, "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 & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1398 }, "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": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "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": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "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": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "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": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "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": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2268 }, "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 & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3251 }, "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": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2752 }, "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": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 662 }, "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": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_sequence": 3179 }, "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 & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "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 & 1st St", "tippecanoe:retain_points_multiplier_sequence": 3229 }, "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": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2027 }, "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": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "Market St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2067 }, "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 & Market St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 3360 }, "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": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "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_sequence": 1168 }, "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 & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "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_sequence": 1183 }, "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/Pier 5", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "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": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "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": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "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": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "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": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "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": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "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": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2270 }, "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": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "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": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3368 }, "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": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "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": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3245 }, "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": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "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": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "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 & Main St", "tippecanoe:retain_points_multiplier_sequence": 2062 }, "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 & BEALE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "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": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "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 & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "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/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3073 }, "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": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3236 }, "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": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 31 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3175 }, "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": "Spear St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2661 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3209 }, "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": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "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_sequence": 48 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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": "EMBARCADERO & ST", "tippecanoe:retain_points_multiplier_sequence": 3218 }, "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": "Main St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "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 & Market St", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "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": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "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": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 41 }, "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": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "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 & Donchee Way", "tippecanoe:retain_points_multiplier_sequence": 3508 }, "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": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "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": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "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_sequence": 2678 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2676 }, "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": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2677 }, "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": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3414 }, "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": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 3506 }, "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": "Market St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "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": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "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 & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "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": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "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": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 3338 }, "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": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "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": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "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": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3507 }, "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": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1796 }, "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 & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3457 }, "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 & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "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": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "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": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "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": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "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_sequence": 3389 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "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": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3387 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "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": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "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_sequence": 3469 }, "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.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3380 }, "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_sequence": 3381 }, "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": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3386 }, "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": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "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": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "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": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_sequence": 3243 }, "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": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2022 }, "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": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "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": "Hward St&Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3416 }, "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": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "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": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "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": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "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": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "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": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 3385 }, "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": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3503 }, "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_sequence": 1172 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "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_sequence": 1175 }, "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": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "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": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "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&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3484 }, "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 & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3150 }, "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": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3310 }, "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 & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "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 & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "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": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1475 }, "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": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "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 H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 3365 }, "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 & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "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 & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 557 }, "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": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3065 }, "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 C", "tippecanoe:retain_points_multiplier_sequence": 223 }, "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 D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3377 }, "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": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 224 }, "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 & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "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 M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "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 & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3364 }, "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 H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "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": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "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": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2815 }, "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": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "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 & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3363 }, "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 & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 559 }, "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": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "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 H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "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": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 734 }, "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": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3340 }, "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 St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "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 Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3223 }, "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 St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "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": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3224 }, "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": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 562 }, "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": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "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": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 3225 }, "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": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "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": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 3226 }, "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": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "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_sequence": 2736 }, "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": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2737 }, "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": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2745 }, "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 & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2746 }, "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": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "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": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "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": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "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": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "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 & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "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": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "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": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2740 }, "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": "Post St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "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": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "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": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "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": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2758 }, "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": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2933 }, "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": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "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": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "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_sequence": 2915 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "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": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3497 }, "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": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2169 }, "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_sequence": 2929 }, "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 & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "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": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_sequence": 3445 }, "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": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "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": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "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": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2912 }, "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": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2913 }, "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": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2854 }, "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": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 982 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "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_sequence": 1856 }, "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": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1857 }, "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": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "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": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1516 }, "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_sequence": 1244 }, "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": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "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": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1535 }, "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_sequence": 1850 }, "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": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "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": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "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": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "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": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "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 & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "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_sequence": 3396 }, "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": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "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": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1477 }, "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": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "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": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "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 & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "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": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1519 }, "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": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "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": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "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": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2132 }, "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": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2203 }, "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": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "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": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3331 }, "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": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "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": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "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": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "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": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3455 }, "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": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2053 }, "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": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 2973 }, "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": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2054 }, "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": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "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": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2312 }, "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": "Sutter St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2749 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2310 }, "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": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "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": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2743 }, "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 & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "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": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "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": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "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": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "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": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "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": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "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": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "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": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "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_sequence": 1164 }, "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": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "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": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2934 }, "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": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "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": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2848 }, "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": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2922 }, "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": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1855 }, "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": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "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_sequence": 1853 }, "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": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1854 }, "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_sequence": 1153 }, "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": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "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": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2843 }, "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": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "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": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "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": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1594 }, "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": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "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": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1847 }, "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": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "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": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1587 }, "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": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "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": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "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": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "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": "Jones St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "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": "Post St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2411 }, "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": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1668 }, "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": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "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": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "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": "Ellis St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "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": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2164 }, "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": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "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": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "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": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "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": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3400 }, "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": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "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": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3261 }, "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": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_sequence": 3250 }, "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 & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "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": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "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": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2844 }, "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": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 980 }, "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": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2842 }, "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 & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3395 }, "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": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "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 N", "tippecanoe:retain_points_multiplier_sequence": 3333 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2036 }, "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 & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "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 & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "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": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "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": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3367 }, "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": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "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": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "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": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "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": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "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": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2919 }, "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": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3086 }, "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_sequence": 2927 }, "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": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "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": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3081 }, "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": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2923 }, "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": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "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/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3326 }, "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_sequence": 238 }, "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": "11th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "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": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "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": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "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_sequence": 2060 }, "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 & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "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": "Market St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "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": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "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": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "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": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3498 }, "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": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 32 }, "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": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3384 }, "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": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "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": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3249 }, "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": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "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": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "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": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "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": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1967 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "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": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3332 }, "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 AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 3415 }, "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": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "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": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2056 }, "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": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "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": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "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 & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1965 }, "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": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "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": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 3145 }, "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": "8th St&Howard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3417 }, "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": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "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": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "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_sequence": 1283 }, "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": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "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": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "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": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "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": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "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": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "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": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3499 }, "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": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "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": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "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": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 3161 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "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": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 3108 }, "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 & SANCHEZ ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "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": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "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 & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "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": "Church St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 3262 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "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": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "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": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "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": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "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": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "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": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "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": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 803 }, "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": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2657 }, "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 & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "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_sequence": 3142 }, "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": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2068 }, "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": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "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": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3509 }, "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": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "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 & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "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_sequence": 271 }, "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": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "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": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "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": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2055 }, "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_sequence": 2971 }, "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 & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "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 & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2949 }, "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": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "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_sequence": 273 }, "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": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "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 & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2951 }, "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": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "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": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "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 & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "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": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2954 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "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": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "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": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "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": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "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": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2480 }, "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": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "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": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3069 }, "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": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "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": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3070 }, "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_sequence": 2486 }, "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/Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "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": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "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": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 790 }, "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": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "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 & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "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 & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "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": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "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": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2955 }, "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": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2956 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "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_sequence": 2959 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2960 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2961 }, "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 & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2962 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "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": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2963 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1968 }, "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": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "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": "14th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3405 }, "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": "15th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "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": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "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 & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "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_sequence": 1971 }, "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": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1972 }, "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_sequence": 276 }, "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": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "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 & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3125 }, "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": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1973 }, "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": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 3403 }, "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": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3413 }, "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 & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3406 }, "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 & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3240 }, "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_sequence": 280 }, "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": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "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 & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "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": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "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 & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "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": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "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 & 11th St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "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": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "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": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "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": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "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": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "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": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "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": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "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": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "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_sequence": 605 }, "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 & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "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": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "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": "18th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1974 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1975 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "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": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1977 }, "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 & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 3412 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3407 }, "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": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3411 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "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_sequence": 1979 }, "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 & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "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": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3408 }, "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": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3410 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "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_sequence": 1290 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "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": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 3442 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "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": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "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": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "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": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "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 & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2358 }, "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": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "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": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "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": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3199 }, "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": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "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": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "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": "Mason & Turk", "tippecanoe:retain_points_multiplier_sequence": 3500 }, "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": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3253 }, "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_sequence": 3256 }, "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": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "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": "Ellis street & Powell street", "tippecanoe:retain_points_multiplier_sequence": 3468 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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 STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 24 }, "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 St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "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 & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_sequence": 3260 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 23 }, "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": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2041 }, "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": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "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": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "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": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 3064 }, "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": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2066 }, "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": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2692 }, "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": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1359 }, "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": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "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": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2030 }, "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": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 2690 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2032 }, "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": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "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": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "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": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3196 }, "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": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "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": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3402 }, "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 & Mary St", "tippecanoe:retain_points_multiplier_sequence": 3301 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1962 }, "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": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1961 }, "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": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "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_sequence": 1960 }, "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": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1959 }, "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": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1667 }, "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": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "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": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "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 & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "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_sequence": 2058 }, "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 & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2057 }, "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": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1956 }, "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": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3502 }, "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": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 3343 }, "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": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1957 }, "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": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "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": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "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_sequence": 3327 }, "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 & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3328 }, "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": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "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": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "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 & Third St", "tippecanoe:retain_points_multiplier_sequence": 3160 }, "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": "Folsom St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "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": "4th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "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": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3198 }, "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 & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "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": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "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": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "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 & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "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": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "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 & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "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": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "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": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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 & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "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 & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "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": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "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": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "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 & 8th St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "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": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 601 }, "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": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3146 }, "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": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "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": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "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": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3421 }, "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": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "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": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3401 }, "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": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3265 }, "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 & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "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": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 597 }, "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 & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "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": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "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 & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2828 }, "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": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2827 }, "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": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3359 }, "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": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "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": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 3075 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3376 }, "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": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "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": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "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": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 3504 }, "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": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "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": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "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": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "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": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3501 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "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": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "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": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 587 }, "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": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 3186 }, "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 & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3505 }, "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": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "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": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3149 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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 & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "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": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "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_sequence": 1714 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "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": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3242 }, "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": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "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": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "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_sequence": 3470 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "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 & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3215 }, "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_sequence": 2822 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "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": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2824 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3062 }, "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_sequence": 177 }, "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": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "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_sequence": 1717 }, "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": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1716 }, "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 & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 3167 }, "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 & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3321 }, "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 & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 3299 }, "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": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3164 }, "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 & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "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": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3151 }, "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_sequence": 33 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "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": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2821 }, "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": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "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": "3rd Street & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3309 }, "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": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 172 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3269 }, "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": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 3268 }, "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": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3292 }, "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": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "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": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3293 }, "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": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3461 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2346 }, "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 & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2345 }, "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&15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3248 }, "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": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "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": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 278 }, "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 & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "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_sequence": 2332 }, "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": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2333 }, "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": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 279 }, "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 & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "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_sequence": 2979 }, "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 & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "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": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2975 }, "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": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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 & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "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": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "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 & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2460 }, "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": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2461 }, "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": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "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": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "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, "tippecanoe:retain_points_multiplier_sequence": 295 }, "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": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 294 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "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": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "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": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3458 }, "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": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "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": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2464 }, "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_sequence": 292 }, "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": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "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": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "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": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1709 }, "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": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "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": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3459 }, "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_sequence": 297 }, "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": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "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": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2335 }, "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": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "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": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "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": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "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": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "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": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "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 & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "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_sequence": 615 }, "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": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "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": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2339 }, "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": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 3493 }, "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/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "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": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2340 }, "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": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "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": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2977 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2465 }, "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": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "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 & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "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_sequence": 370 }, "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 & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "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": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2467 }, "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": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "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": "Southern Heights Ave & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2594 }, "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": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2595 }, "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": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2593 }, "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": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "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": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3028 }, "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": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "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_sequence": 400 }, "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 & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "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": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 397 }, "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": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3203 }, "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": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "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 & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "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": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "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": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 743 }, "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 & Carolina St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "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": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "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 & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3029 }, "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": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3037 }, "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": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "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": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3030 }, "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": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3464 }, "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": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3104 }, "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_sequence": 893 }, "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 & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 894 }, "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_sequence": 895 }, "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": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "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_sequence": 316 }, "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 & Texas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "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": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 313 }, "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": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3462 }, "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 Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 3463 }, "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": "16th St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3460 }, "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": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 3182 }, "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": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3267 }, "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_sequence": 3291 }, "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": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3294 }, "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": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "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/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "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": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "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": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3080 }, "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 St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3311 }, "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": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3295 }, "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": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3169 }, "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": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2793 }, "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": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "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": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "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 & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3165 }, "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": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "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": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 897 }, "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_sequence": 368 }, "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": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "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": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "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": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1948 }, "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": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2813 }, "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": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2814 }, "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 & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "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": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "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 & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "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_sequence": 3034 }, "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 & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3035 }, "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": "Wisconsin St & Coral Rd", "tippecanoe:retain_points_multiplier_sequence": 3036 }, "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": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3357 }, "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_sequence": 3358 }, "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": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "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": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "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": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "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_sequence": 1952 }, "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": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "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": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "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": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 3144 }, "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": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "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_sequence": 133 }, "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": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "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": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3290 }, "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": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "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": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3296 }, "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": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "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_sequence": 135 }, "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": "3RD ST & 22ND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3180 }, "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": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "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": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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 & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "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": "22nd St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "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": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 3347 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "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": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "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": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3289 }, "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": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 3170 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "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 & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "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": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "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_sequence": 791 }, "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 & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "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_sequence": 796 }, "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": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 797 }, "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": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "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 & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2101 }, "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_sequence": 2102 }, "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": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "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": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "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 & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "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": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2104 }, "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 & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "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": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "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": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3106 }, "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 & 29th St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "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, "tippecanoe:retain_points_multiplier_sequence": 798 }, "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": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 3107 }, "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": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "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_sequence": 3263 }, "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": "Church St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "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_sequence": 3063 }, "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": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "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": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "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 & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "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": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "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": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "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": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3047 }, "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 & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 775 }, "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": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "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 & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "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": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "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": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "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": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "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_sequence": 1988 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "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": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1987 }, "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 & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "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": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "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& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3451 }, "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 & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "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 Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "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& Randall St", "tippecanoe:retain_points_multiplier_sequence": 3452 }, "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": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "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 & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 1992 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "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": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "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": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "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": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 919 }, "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": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2965 }, "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_sequence": 423 }, "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": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "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": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "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": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "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": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2966 }, "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": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2967 }, "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": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "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": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 422 }, "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": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3409 }, "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": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 421 }, "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": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "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": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3404 }, "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": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "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 & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2968 }, "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": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "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 St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 3378 }, "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": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3447 }, "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": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1985 }, "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": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3361 }, "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_sequence": 2012 }, "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": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2011 }, "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": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 2972 }, "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 & Power St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3515 }, "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 & Fair Ave", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "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": "Mission St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2021 }, "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": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 755 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "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_sequence": 1294 }, "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": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3258 }, "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": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "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": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "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": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "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": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3257 }, "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": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "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": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "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": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 752 }, "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 & Cesar Chavz St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3448 }, "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 & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "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 & Bessie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "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 & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "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": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "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_sequence": 753 }, "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": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 754 }, "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": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3450 }, "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": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "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": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 910 }, "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 & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "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 & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "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_sequence": 907 }, "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": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "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 & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "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": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "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": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3372 }, "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": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "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": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "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_sequence": 913 }, "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 & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "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": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "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 & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3213 }, "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 & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 3212 }, "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 & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "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": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "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, "tippecanoe:retain_points_multiplier_sequence": 917 }, "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": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "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": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "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 & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "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": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3197 }, "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": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "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": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "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": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 2686 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "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": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 581 }, "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": "4080 Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1989 }, "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": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "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": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "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": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "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_sequence": 2019 }, "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": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "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": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2614 }, "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": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "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_sequence": 2616 }, "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": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2615 }, "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": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2833 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "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_sequence": 3336 }, "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 & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3339 }, "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": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 2608 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "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": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 949 }, "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 & College Ave", "tippecanoe:retain_points_multiplier_sequence": 946 }, "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": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "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_sequence": 2606 }, "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": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "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": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2834 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "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": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 3188 }, "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": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "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": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "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": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "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_sequence": 2247 }, "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": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2246 }, "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": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "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 & Athens St", "tippecanoe:retain_points_multiplier_sequence": 2237 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "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": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "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": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "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": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "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": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "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": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 2075 }, "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": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "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": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "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": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "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": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "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": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2374 }, "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": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2249 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "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 & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 566 }, "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": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 568 }, "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 & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "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": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 3219 }, "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": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2372 }, "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_sequence": 37 }, "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 & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2475 }, "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 & Murray St", "tippecanoe:retain_points_multiplier_sequence": 950 }, "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 & Roscoe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 954 }, "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": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 951 }, "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": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "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": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 944 }, "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 & Andover St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "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": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3424 }, "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": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "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": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3074 }, "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": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "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 & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2605 }, "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": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2618 }, "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_sequence": 3418 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3193 }, "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 & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "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": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "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 & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "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": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "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": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3391 }, "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": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 525 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "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": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "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": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2609 }, "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": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "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": "University St & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2901 }, "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": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "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 & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "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 & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "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": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "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_sequence": 1805 }, "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": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1806 }, "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 & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2900 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2898 }, "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 & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "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": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2904 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3041 }, "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": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 3042 }, "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": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2902 }, "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": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 3046 }, "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 & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "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": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1810 }, "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": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "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": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "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": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "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": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "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": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "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 & 25th St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "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": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 620 }, "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": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 418 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2341 }, "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": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2342 }, "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": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "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_sequence": 2344 }, "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": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "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": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 3449 }, "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": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "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": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "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": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "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": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "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 & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "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_sequence": 450 }, "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": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "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": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 642 }, "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 & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "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_sequence": 589 }, "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": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "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": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 644 }, "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": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "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": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 633 }, "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": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 915 }, "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 & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 639 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3259 }, "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 & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 634 }, "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 & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "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": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "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": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "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 & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 3083 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "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": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "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 & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2816 }, "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 & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "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": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2818 }, "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 & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1599 }, "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": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1598 }, "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": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "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": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2620 }, "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": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "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_sequence": 447 }, "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": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "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": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3033 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "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": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "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": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "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": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "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, "tippecanoe:retain_points_multiplier_sequence": 901 }, "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": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "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 St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "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": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_sequence": 3349 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "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 & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "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": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "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_sequence": 3348 }, "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": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3350 }, "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": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "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 & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1666 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "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": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "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": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "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": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2619 }, "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": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2219 }, "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": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "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": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2218 }, "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 & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2264 }, "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": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "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": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 3238 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "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": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "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": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "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_sequence": 3298 }, "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": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3287 }, "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": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 3168 }, "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": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "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_sequence": 3171 }, "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 & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "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": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "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 & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2261 }, "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_sequence": 2262 }, "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": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2263 }, "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 & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 3303 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3304 }, "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": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 3302 }, "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": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1921 }, "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 & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "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": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "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_sequence": 3317 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3286 }, "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": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 3325 }, "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": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "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 & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3465 }, "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": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3466 }, "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 & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "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": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "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_sequence": 3318 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3285 }, "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": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 3324 }, "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": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "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_sequence": 2622 }, "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": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "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": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "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_sequence": 647 }, "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": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "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 & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2613 }, "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": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 2612 }, "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 & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2580 }, "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": "San Bruno Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "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": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3512 }, "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_sequence": 570 }, "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": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "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 & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 2601 }, "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&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3239 }, "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_sequence": 2624 }, "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": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2623 }, "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_sequence": 595 }, "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": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "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": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 637 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2576 }, "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_sequence": 2577 }, "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": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2578 }, "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_sequence": 69 }, "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": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "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": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "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 & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2267 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "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": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "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": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "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_sequence": 72 }, "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": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "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": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "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 & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3040 }, "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_sequence": 3045 }, "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": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3044 }, "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": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "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": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3043 }, "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_sequence": 572 }, "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": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "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 & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1800 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1804 }, "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 & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1802 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "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": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "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 & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2590 }, "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 & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2589 }, "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 & Dwight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "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": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "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": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "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": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 3473 }, "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 & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "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": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1798 }, "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 & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "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": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "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": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "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": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "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": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2581 }, "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": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3472 }, "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": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "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": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "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": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 596 }, "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 & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2832 }, "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": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2831 }, "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 & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "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": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "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": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3039 }, "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": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 169 }, "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": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "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": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "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": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2217 }, "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": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "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": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3084 }, "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": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 158 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3319 }, "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": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 3323 }, "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 & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "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_sequence": 160 }, "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": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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_sequence": 2204 }, "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": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "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": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3320 }, "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": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 3284 }, "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": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2508 }, "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": "3rd St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 163 }, "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": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "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": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 157 }, "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": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "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": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2514 }, "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": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3305 }, "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": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2513 }, "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": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2214 }, "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 & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 165 }, "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": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "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": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3038 }, "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": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3172 }, "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_sequence": 3282 }, "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": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3281 }, "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": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "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": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2944 }, "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": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "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": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2943 }, "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": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3329 }, "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_sequence": 141 }, "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": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3252 }, "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": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3280 }, "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 & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "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_sequence": 144 }, "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 & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "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": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 3266 }, "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": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3474 }, "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": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 2233 }, "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 & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "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": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "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 Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3278 }, "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 St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3306 }, "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": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3322 }, "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": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3279 }, "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": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_sequence": 3283 }, "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": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "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 Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "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": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3330 }, "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 & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "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": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "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 & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "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": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2941 }, "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": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "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": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "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": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3351 }, "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": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3355 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3352 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3341 }, "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 St & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3308 }, "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_sequence": 3297 }, "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 Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3288 }, "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": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 3307 }, "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": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "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_sequence": 1051 }, "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": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "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": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 3337 }, "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 & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1934 }, "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_sequence": 1936 }, "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": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "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": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "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 & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1933 }, "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/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "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": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "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": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 3111 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1563 }, "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": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "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": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "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 & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "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/US Post Office", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3191 }, "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": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "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": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1561 }, "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": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "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": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "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": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "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": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 3431 }, "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": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "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": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "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": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "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_sequence": 2213 }, "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": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2212 }, "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_sequence": 1711 }, "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": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "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 & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1919 }, "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": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "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": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "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": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 744 }, "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": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "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": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1758 }, "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_sequence": 3048 }, "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": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3049 }, "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": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "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": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "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": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2511 }, "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": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "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": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2210 }, "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": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "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": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "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": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2209 }, "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": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "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": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "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_sequence": 1565 }, "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": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "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": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1558 }, "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": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "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 & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "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": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 3178 }, "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": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "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_sequence": 1606 }, "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": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "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": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "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": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "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": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "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 & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "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": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "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": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2128 }, "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": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "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": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "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 & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "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": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "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_sequence": 1605 }, "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 & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "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": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "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": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "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 & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1601 }, "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 Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1600 }, "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": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1617 }, "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": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "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 ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3159 }, "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": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2660 }, "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": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2454 }, "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": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "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": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3153 }, "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": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "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": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "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": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "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 Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "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": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "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": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 532 }, "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": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "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": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 3481 }, "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": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "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 community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3488 }, "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": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3485 }, "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 & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "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": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3216 }, "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": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "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": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "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": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 862 }, "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": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 861 }, "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": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "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": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "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": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "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": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "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": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 785 }, "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": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3482 }, "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": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "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": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "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 & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "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": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1632 }, "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": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2452 }, "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 NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3483 }, "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": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3486 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "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": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 3491 }, "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 RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "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": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "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 & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3156 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "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 & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2449 }, "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_sequence": 2450 }, "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": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2451 }, "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": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "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 & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2293 }, "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 & Montana St", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "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 & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "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": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "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": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "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": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3211 }, "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": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "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": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2280 }, "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 & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 2535 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3132 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3134 }, "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_sequence": 2524 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3135 }, "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_sequence": 2515 }, "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 & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2516 }, "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_sequence": 2518 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "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": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2008 }, "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 & Allison St", "tippecanoe:retain_points_multiplier_sequence": 1990 }, "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": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "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": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2003 }, "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": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "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": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "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": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "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": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "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 & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "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": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "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 & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1916 }, "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": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "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": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2078 }, "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 & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "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": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "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_sequence": 2504 }, "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": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "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": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2239 }, "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": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "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": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2733 }, "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": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2732 }, "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": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2946 }, "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 & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3077 }, "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": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3098 }, "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 & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3274 }, "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": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3275 }, "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_sequence": 2948 }, "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 & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "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": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3072 }, "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": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "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": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "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 & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3095 }, "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": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3096 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3102 }, "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": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3101 }, "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": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "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": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 3087 }, "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 & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3273 }, "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": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3272 }, "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": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "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": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3015 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "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 & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 3020 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3018 }, "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": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 3019 }, "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": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "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_sequence": 3016 }, "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": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3100 }, "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": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "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": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "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 & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 636 }, "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": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "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_sequence": 2585 }, "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 & SOMERSET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3181 }, "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": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "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 & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "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": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "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": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "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": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "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 & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "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": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3277 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3055 }, "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 Castro Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2098 }, "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 Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2099 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3057 }, "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 Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2100 }, "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": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3174 }, "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": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 3059 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3201 }, "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", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "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 Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3200 }, "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/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3060 }, "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 Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3061 }, "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 Church Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3058 }, "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": "Feature", "properties": { "name": "Metro Powell Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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_sequence": 1 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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_sequence": 3 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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_sequence": 5 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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_sequence": 7 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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_sequence": 9 }, "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": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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/Visitor's Center", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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/Youth Hostel", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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/Visitor Center", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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 & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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, "tippecanoe:retain_points_multiplier_sequence": 199 }, "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": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "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": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "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 & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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 & Acevedo Ave .", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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 NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "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 & Tapia Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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 NS/W-SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "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": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "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": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "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": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "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": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "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": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "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, "tippecanoe:retain_points_multiplier_sequence": 446 }, "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, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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 Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "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 Avenue & Holloway St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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 Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "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": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "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": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "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, "tippecanoe:retain_points_multiplier_sequence": 99 }, "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&Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "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, "tippecanoe:retain_points_multiplier_sequence": 100 }, "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&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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, "tippecanoe:retain_points_multiplier_sequence": 471 }, "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 & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "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, "tippecanoe:retain_points_multiplier_sequence": 98 }, "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": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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 & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "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, "tippecanoe:retain_points_multiplier_sequence": 178 }, "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 & JULES AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "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 & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "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, "tippecanoe:retain_points_multiplier_sequence": 174 }, "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 & Capitol AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "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 & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "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 & Granada Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "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": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "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 & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "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": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "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": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "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 & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "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 & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "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": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "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": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "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": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "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": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "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": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "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": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "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/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "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": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "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, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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, "tippecanoe:retain_points_multiplier_sequence": 328 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "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/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "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": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "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, "tippecanoe:retain_points_multiplier_sequence": 331 }, "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, "tippecanoe:retain_points_multiplier_sequence": 451 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "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, "tippecanoe:retain_points_multiplier_sequence": 128 }, "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": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "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 & SAN JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "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": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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, "tippecanoe:retain_points_multiplier_sequence": 355 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "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": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "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, "tippecanoe:retain_points_multiplier_sequence": 329 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "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, "tippecanoe:retain_points_multiplier_sequence": 150 }, "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 & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "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 at Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "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, "tippecanoe:retain_points_multiplier_sequence": 136 }, "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": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "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 & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "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, "tippecanoe:retain_points_multiplier_sequence": 257 }, "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": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "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": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "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, "tippecanoe:retain_points_multiplier_sequence": 284 }, "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 & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "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, "tippecanoe:retain_points_multiplier_sequence": 277 }, "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 & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "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, "tippecanoe:retain_points_multiplier_sequence": 64 }, "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 & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "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": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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 & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "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": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "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": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "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": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "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": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 478 }, "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": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "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, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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 & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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, "tippecanoe:retain_points_multiplier_sequence": 222 }, "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 & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "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 & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "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 & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "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, "tippecanoe:retain_points_multiplier_sequence": 215 }, "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 & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "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 & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "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, "tippecanoe:retain_points_multiplier_sequence": 225 }, "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 & Somerset St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "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, "tippecanoe:retain_points_multiplier_sequence": 212 }, "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 & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "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": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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, "tippecanoe:retain_points_multiplier_sequence": 363 }, "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": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "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": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "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 & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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, "tippecanoe:retain_points_multiplier_sequence": 497 }, "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 Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "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 St & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "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": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "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": "3rd St & Key St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "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": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "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": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "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, "tippecanoe:retain_points_multiplier_sequence": 197 }, "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": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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, "tippecanoe:retain_points_multiplier_sequence": 195 }, "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": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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, "tippecanoe:retain_points_multiplier_sequence": 193 }, "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": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "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 & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "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, "tippecanoe:retain_points_multiplier_sequence": 144 }, "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 Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "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": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "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 & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "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": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "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": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "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, "tippecanoe:retain_points_multiplier_sequence": 148 }, "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": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "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": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "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": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "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 community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "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": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "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": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "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": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "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": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "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": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "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": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "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": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "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": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "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, "tippecanoe:retain_points_multiplier_sequence": 142 }, "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": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "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, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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, "tippecanoe:retain_points_multiplier_sequence": 30 }, "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": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "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 & Cambon Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "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": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "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": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "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": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "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, "tippecanoe:retain_points_multiplier_sequence": 422 }, "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 & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "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": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "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 & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "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 NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "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": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "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, "tippecanoe:retain_points_multiplier_sequence": 87 }, "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 & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "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": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "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": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "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 & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "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/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "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": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "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, "tippecanoe:retain_points_multiplier_sequence": 460 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "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": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "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": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "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": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "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": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "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": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "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": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "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 Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "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": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "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, "tippecanoe:retain_points_multiplier_sequence": 37 }, "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 & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "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": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "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 Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "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": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "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, "tippecanoe:retain_points_multiplier_sequence": 315 }, "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": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "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": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "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": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "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": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "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": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "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": "274 Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "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": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "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": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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, "tippecanoe:retain_points_multiplier_sequence": 294 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "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, "tippecanoe:retain_points_multiplier_sequence": 304 }, "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 & Thrift St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "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, "tippecanoe:retain_points_multiplier_sequence": 300 }, "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 & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "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, "tippecanoe:retain_points_multiplier_sequence": 297 }, "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 & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "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, "tippecanoe:retain_points_multiplier_sequence": 295 }, "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": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "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": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "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, "tippecanoe:retain_points_multiplier_sequence": 289 }, "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 & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "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": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "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": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "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": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "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": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "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": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "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": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "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": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "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, "tippecanoe:retain_points_multiplier_sequence": 375 }, "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": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "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, "tippecanoe:retain_points_multiplier_sequence": 449 }, "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 Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "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 St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "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 & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "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 & Flournoy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "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 & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "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": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "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, "tippecanoe:retain_points_multiplier_sequence": 334 }, "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, "tippecanoe:retain_points_multiplier_sequence": 452 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "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, "tippecanoe:retain_points_multiplier_sequence": 453 }, "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, "tippecanoe:retain_points_multiplier_sequence": 332 }, "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, "tippecanoe:retain_points_multiplier_sequence": 333 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "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, "tippecanoe:retain_points_multiplier_sequence": 323 }, "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 & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "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, "tippecanoe:retain_points_multiplier_sequence": 326 }, "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, "tippecanoe:retain_points_multiplier_sequence": 450 }, "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, "tippecanoe:retain_points_multiplier_sequence": 325 }, "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": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "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, "tippecanoe:retain_points_multiplier_sequence": 267 }, "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": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "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": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "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 & Allison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "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, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "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": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "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 & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "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 & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "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 & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "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 & Acton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "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 & Lawrence Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "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": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "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, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "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, "tippecanoe:retain_points_multiplier_sequence": 154 }, "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": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "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, "tippecanoe:retain_points_multiplier_sequence": 252 }, "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": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "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": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "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, "tippecanoe:retain_points_multiplier_sequence": 509 }, "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": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "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, "tippecanoe:retain_points_multiplier_sequence": 162 }, "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 & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "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, "tippecanoe:retain_points_multiplier_sequence": 153 }, "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": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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 & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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 & Brunswick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "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 & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "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": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "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": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "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": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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 & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "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 & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "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": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "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": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "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, "tippecanoe:retain_points_multiplier_sequence": 242 }, "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 & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "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": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "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": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "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": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "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": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "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": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "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": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "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": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "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": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "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": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "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": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "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 & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "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, "tippecanoe:retain_points_multiplier_sequence": 380 }, "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": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "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, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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 & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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, "tippecanoe:retain_points_multiplier_sequence": 81 }, "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": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "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, "tippecanoe:retain_points_multiplier_sequence": 320 }, "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": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "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, "tippecanoe:retain_points_multiplier_sequence": 311 }, "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": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "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": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "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": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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, "tippecanoe:retain_points_multiplier_sequence": 123 }, "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": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "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": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "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": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "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, "tippecanoe:retain_points_multiplier_sequence": 280 }, "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": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "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": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "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": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "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, "tippecanoe:retain_points_multiplier_sequence": 392 }, "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": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "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": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "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": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "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 & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "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, "tippecanoe:retain_points_multiplier_sequence": 481 }, "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&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "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 & Cielito Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "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": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "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": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "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 & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "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": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "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 & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "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, "tippecanoe:retain_points_multiplier_sequence": 348 }, "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, "tippecanoe:retain_points_multiplier_sequence": 349 }, "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, "tippecanoe:retain_points_multiplier_sequence": 347 }, "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 & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "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": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "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": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "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": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "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, "tippecanoe:retain_points_multiplier_sequence": 431 }, "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 & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "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, "tippecanoe:retain_points_multiplier_sequence": 186 }, "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": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "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": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "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, "tippecanoe:retain_points_multiplier_sequence": 220 }, "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": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "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": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "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 & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "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": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "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": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "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": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "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 & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "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": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "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 & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "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, "tippecanoe:retain_points_multiplier_sequence": 390 }, "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": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "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 & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "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, "tippecanoe:retain_points_multiplier_sequence": 413 }, "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": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "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, "tippecanoe:retain_points_multiplier_sequence": 399 }, "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": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "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, "tippecanoe:retain_points_multiplier_sequence": 371 }, "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": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "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": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "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": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "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": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "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": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "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": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "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 & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "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, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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 & Castelo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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, "tippecanoe:retain_points_multiplier_sequence": 455 }, "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": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "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 & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "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 & Macdonald Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "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": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "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": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "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, "tippecanoe:retain_points_multiplier_sequence": 367 }, "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 & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "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": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "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": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "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": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "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": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "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 & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "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, "tippecanoe:retain_points_multiplier_sequence": 441 }, "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": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "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, "tippecanoe:retain_points_multiplier_sequence": 445 }, "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": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "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": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "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, "tippecanoe:retain_points_multiplier_sequence": 434 }, "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": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "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 & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "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": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "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, "tippecanoe:retain_points_multiplier_sequence": 436 }, "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": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "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": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "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, "tippecanoe:retain_points_multiplier_sequence": 389 }, "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": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "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, "tippecanoe:retain_points_multiplier_sequence": 322 }, "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 & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "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": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "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, "tippecanoe:retain_points_multiplier_sequence": 409 }, "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": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "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 & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "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, "tippecanoe:retain_points_multiplier_sequence": 433 }, "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": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "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": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "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": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "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": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "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": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "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": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "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, "tippecanoe:retain_points_multiplier_sequence": 421 }, "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 & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "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, "tippecanoe:retain_points_multiplier_sequence": 418 }, "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": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "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, "tippecanoe:retain_points_multiplier_sequence": 365 }, "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": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "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, "tippecanoe:retain_points_multiplier_sequence": 416 }, "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": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "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, "tippecanoe:retain_points_multiplier_sequence": 356 }, "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": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "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": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "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 & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "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": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "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": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "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 & SOMERSET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "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 & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "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": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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": "Arleta Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "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": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "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, "tippecanoe:retain_points_multiplier_sequence": 501 }, "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, "tippecanoe:retain_points_multiplier_sequence": 494 }, "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, "tippecanoe:retain_points_multiplier_sequence": 498 }, "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, "tippecanoe:retain_points_multiplier_sequence": 491 }, "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": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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": "Leland Ave@Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "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 & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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 & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "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 & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "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": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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, "tippecanoe:retain_points_multiplier_sequence": 429 }, "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 & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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, "tippecanoe:retain_points_multiplier_sequence": 427 }, "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": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "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 & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "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, "tippecanoe:retain_points_multiplier_sequence": 402 }, "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": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "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": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "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": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "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, "tippecanoe:retain_points_multiplier_sequence": 500 }, "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": "BAY SHORE BLVD & SUNNYDALE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "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": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "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": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "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 & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "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": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "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, "tippecanoe:retain_points_multiplier_sequence": 426 }, "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 & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "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, "tippecanoe:retain_points_multiplier_sequence": 424 }, "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": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "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 & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "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 & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "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 & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "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": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "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, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "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": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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 & Bill Walsh Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "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": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "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": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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, "tippecanoe:retain_points_multiplier_sequence": 813 }, "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/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 812 }, "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, "tippecanoe:retain_points_multiplier_sequence": 810 }, "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": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 811 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "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 & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "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": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "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": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4161 }, "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": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "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": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4163 }, "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": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "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": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4162 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "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/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "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": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "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": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1693 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "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": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2283 }, "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": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 730 }, "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 Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "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": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "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": "BOWLEY ST & GIBSON RD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "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 & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3812 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2141 }, "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": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2140 }, "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/Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1695 }, "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/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1694 }, "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 Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1691 }, "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": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1692 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2137 }, "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": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2138 }, "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": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2135 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2247 }, "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": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2246 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "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": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2280 }, "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": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2142 }, "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": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "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": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "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 (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2560 }, "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": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2561 }, "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 & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2478 }, "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": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2250 }, "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)/Presidio Bank", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2251 }, "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": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "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": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2133 }, "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, "tippecanoe:retain_points_multiplier_sequence": 666 }, "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": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "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": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4041 }, "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": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "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 & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1899 }, "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": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1898 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4037 }, "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": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4257 }, "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": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "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": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4039 }, "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": "220 Halleck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "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": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "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": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4042 }, "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": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4040 }, "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": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2477 }, "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": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1897 }, "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 & Halleck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4043 }, "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 NW-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4256 }, "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": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3757 }, "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": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "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": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2925 }, "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 Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2924 }, "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 YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4258 }, "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 & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2929 }, "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": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2927 }, "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": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4255 }, "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": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "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/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2164 }, "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 DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "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 HOSPITAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "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": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3849 }, "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 & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "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": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "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": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "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, "tippecanoe:retain_points_multiplier_sequence": 150 }, "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": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4147 }, "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 & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "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": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "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": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4122 }, "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": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2999 }, "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": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3000 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "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": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "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": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2202 }, "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": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "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": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 932 }, "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 & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "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": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "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": "Chestnut St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 935 }, "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 St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "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 & Richardson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3758 }, "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": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2143 }, "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 & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "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": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2930 }, "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 & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3498 }, "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 & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3524 }, "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": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3497 }, "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": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "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": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2031 }, "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 & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2919 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "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": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2915 }, "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": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3122 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "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": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2015 }, "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": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "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": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3164 }, "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": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "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, "tippecanoe:retain_points_multiplier_sequence": 950 }, "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 & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 949 }, "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, "tippecanoe:retain_points_multiplier_sequence": 947 }, "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": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2155 }, "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": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2156 }, "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": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 944 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3912 }, "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": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3533 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "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 & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "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 & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1556 }, "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": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "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": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4199 }, "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": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "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": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4156 }, "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": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "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 & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "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": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "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": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3992 }, "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, "tippecanoe:retain_points_multiplier_sequence": 151 }, "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": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1646 }, "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, "tippecanoe:retain_points_multiplier_sequence": 934 }, "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": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "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": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1535 }, "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, "tippecanoe:retain_points_multiplier_sequence": 936 }, "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": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2145 }, "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": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2146 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1552 }, "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": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4300 }, "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, "tippecanoe:retain_points_multiplier_sequence": 954 }, "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": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "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": "Webster St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3681 }, "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": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3262 }, "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": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "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": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3506 }, "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": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3960 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3507 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3499 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3778 }, "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 & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3500 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3504 }, "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 & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3505 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3530 }, "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": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3529 }, "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": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3263 }, "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": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "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": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "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": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "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": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "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": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 857 }, "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": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2032 }, "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": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "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": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 883 }, "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": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1798 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3260 }, "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 & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3259 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3265 }, "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": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3264 }, "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, "tippecanoe:retain_points_multiplier_sequence": 145 }, "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": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1531 }, "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 & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1532 }, "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": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2019 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2040 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "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 & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4111 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2035 }, "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": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "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": "Steiner St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3266 }, "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": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1550 }, "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": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3656 }, "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": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 884 }, "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 & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3261 }, "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": "Steiner St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3258 }, "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": "California St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 897 }, "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": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3671 }, "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": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3104 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1563 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "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": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1565 }, "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": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 860 }, "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": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3129 }, "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": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3128 }, "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": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 649 }, "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 & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "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": "Point Lobos Ave & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2956 }, "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": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "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": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "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": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "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": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "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": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1737 }, "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": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 922 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1739 }, "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": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "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, "tippecanoe:retain_points_multiplier_sequence": 921 }, "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": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3894 }, "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": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "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": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "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": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "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 & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2955 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "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": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2954 }, "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": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2374 }, "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": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4065 }, "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": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "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": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2935 }, "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 & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 610 }, "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": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "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": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2934 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "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": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1769 }, "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": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "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": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "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": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2933 }, "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 & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "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": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "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, "tippecanoe:retain_points_multiplier_sequence": 613 }, "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": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "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, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "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, "tippecanoe:retain_points_multiplier_sequence": 920 }, "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": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "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": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "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": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "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": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "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 & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "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 t& 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4211 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4201 }, "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": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "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": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "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, "tippecanoe:retain_points_multiplier_sequence": 126 }, "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": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4210 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "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 & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "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": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "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": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "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 & Great Hwy", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2199 }, "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": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2200 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3908 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2093 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "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": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "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": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2195 }, "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, "tippecanoe:retain_points_multiplier_sequence": 625 }, "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 & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 624 }, "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, "tippecanoe:retain_points_multiplier_sequence": 616 }, "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": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 617 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2088 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2089 }, "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": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4154 }, "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": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4153 }, "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": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3831 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2087 }, "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": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3830 }, "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 & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 619 }, "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, "tippecanoe:retain_points_multiplier_sequence": 620 }, "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 & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "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, "tippecanoe:retain_points_multiplier_sequence": 622 }, "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 & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "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, "tippecanoe:retain_points_multiplier_sequence": 626 }, "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": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2085 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3814 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3832 }, "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 & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2084 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3834 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2082 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2083 }, "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": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3833 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "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": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "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": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2132 }, "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": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "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, "tippecanoe:retain_points_multiplier_sequence": 590 }, "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 & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "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": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 592 }, "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": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "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": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "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": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "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": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "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": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "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 & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "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": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 601 }, "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": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "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": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "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": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "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, "tippecanoe:retain_points_multiplier_sequence": 603 }, "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": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 602 }, "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": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 593 }, "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": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "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": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "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, "tippecanoe:retain_points_multiplier_sequence": 844 }, "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": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "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": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "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": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "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": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4296 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "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": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "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": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "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 & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "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": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "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": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "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, "tippecanoe:retain_points_multiplier_sequence": 125 }, "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": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "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": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "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": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "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": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 595 }, "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": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4245 }, "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 & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "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": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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, "tippecanoe:retain_points_multiplier_sequence": 597 }, "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": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "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 & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "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 & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "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": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "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 & ANZA St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4297 }, "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": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "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, "tippecanoe:retain_points_multiplier_sequence": 121 }, "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 & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "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, "tippecanoe:retain_points_multiplier_sequence": 118 }, "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 & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "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, "tippecanoe:retain_points_multiplier_sequence": 116 }, "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": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "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 ST & 31ST AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3925 }, "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 S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4209 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "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 St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1670 }, "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 S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4208 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "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": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1668 }, "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, "tippecanoe:retain_points_multiplier_sequence": 542 }, "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 & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "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": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "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": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 841 }, "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 & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "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": "25th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "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": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "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": "25th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "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, "tippecanoe:retain_points_multiplier_sequence": 839 }, "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": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 838 }, "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": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "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, "tippecanoe:retain_points_multiplier_sequence": 539 }, "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": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "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": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "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": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "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": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "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": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "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 & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "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": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "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 & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "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": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "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, "tippecanoe:retain_points_multiplier_sequence": 837 }, "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": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 836 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "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": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "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": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "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 & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "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": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "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": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "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, "tippecanoe:retain_points_multiplier_sequence": 531 }, "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 & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 532 }, "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": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "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": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "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": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "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 & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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, "tippecanoe:retain_points_multiplier_sequence": 112 }, "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": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "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, "tippecanoe:retain_points_multiplier_sequence": 537 }, "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": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "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": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "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": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "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": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3724 }, "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 & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "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": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "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, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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 & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "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, "tippecanoe:retain_points_multiplier_sequence": 109 }, "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 & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "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 & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1664 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "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 & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1662 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1659 }, "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 & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1660 }, "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": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4202 }, "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": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 605 }, "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": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3299 }, "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": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3300 }, "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 & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2192 }, "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 & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "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 & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "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 & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "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": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2189 }, "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": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3301 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2096 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3811 }, "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": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "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 & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3302 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3303 }, "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": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3304 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3809 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2080 }, "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": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3810 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3307 }, "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": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3308 }, "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": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3309 }, "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 & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3310 }, "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": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3311 }, "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 & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2600 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2587 }, "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": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3807 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2078 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2079 }, "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 & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3808 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "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": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3805 }, "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 & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2586 }, "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 & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2585 }, "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 & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2584 }, "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 & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "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": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2582 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2187 }, "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 & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "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 & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2186 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2183 }, "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": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "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 & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "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": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "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": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2181 }, "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": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2182 }, "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": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2179 }, "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": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "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": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "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": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4230 }, "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": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3877 }, "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, "tippecanoe:retain_points_multiplier_sequence": 421 }, "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 & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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, "tippecanoe:retain_points_multiplier_sequence": 410 }, "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": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3804 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3806 }, "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": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "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": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3803 }, "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": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2073 }, "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 & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "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": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "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 & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2580 }, "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 & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "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 & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2577 }, "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": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2578 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2072 }, "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": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3835 }, "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 & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "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 & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "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": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2071 }, "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": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3801 }, "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": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4152 }, "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": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3802 }, "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": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2070 }, "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 & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "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, "tippecanoe:retain_points_multiplier_sequence": 417 }, "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 & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "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, "tippecanoe:retain_points_multiplier_sequence": 420 }, "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": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "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": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "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": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "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": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "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": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2576 }, "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": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "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, "tippecanoe:retain_points_multiplier_sequence": 423 }, "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 & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "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, "tippecanoe:retain_points_multiplier_sequence": 426 }, "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": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "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": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2599 }, "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": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 647 }, "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": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "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": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2598 }, "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, "tippecanoe:retain_points_multiplier_sequence": 629 }, "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": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "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": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2596 }, "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": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "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": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2595 }, "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 & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "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, "tippecanoe:retain_points_multiplier_sequence": 632 }, "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": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "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": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "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": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "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": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3063 }, "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": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 634 }, "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": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "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 & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "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": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "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": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3062 }, "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": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "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 & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2594 }, "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 & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "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 & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2592 }, "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 & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2591 }, "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": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2590 }, "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 & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "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 & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2988 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "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 & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2986 }, "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": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "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, "tippecanoe:retain_points_multiplier_sequence": 638 }, "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 & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "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": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "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": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3390 }, "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": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "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": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3391 }, "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 & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 642 }, "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 & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 644 }, "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": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "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": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3587 }, "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": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "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": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "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": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3672 }, "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": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3389 }, "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 & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3388 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3387 }, "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 & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3386 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3385 }, "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": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3384 }, "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": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1699 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3230 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3231 }, "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 & 47TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3897 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3228 }, "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 & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3229 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3226 }, "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 & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3227 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3224 }, "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": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3225 }, "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": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4150 }, "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": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "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": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3207 }, "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": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1892 }, "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 & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3210 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3208 }, "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": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3209 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2007 }, "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": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2008 }, "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": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "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": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3312 }, "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": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4295 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3315 }, "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 & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3316 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3317 }, "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": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3318 }, "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": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "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": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3320 }, "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, "tippecanoe:retain_points_multiplier_sequence": 608 }, "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": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "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": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3061 }, "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": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3319 }, "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 & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2984 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2982 }, "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": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2983 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3321 }, "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": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3322 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2980 }, "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 & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2981 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "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": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "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, "tippecanoe:retain_points_multiplier_sequence": 570 }, "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": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2977 }, "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": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "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, "tippecanoe:retain_points_multiplier_sequence": 571 }, "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": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 572 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3325 }, "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 & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3326 }, "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": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3327 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3393 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3837 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3823 }, "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": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3392 }, "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": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3328 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3383 }, "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": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3382 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3330 }, "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 & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3329 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3331 }, "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 & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3332 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3333 }, "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": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3334 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3380 }, "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": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3381 }, "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, "tippecanoe:retain_points_multiplier_sequence": 573 }, "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 & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "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": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 575 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3378 }, "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": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3379 }, "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 & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "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": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "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": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3487 }, "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": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3586 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2973 }, "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 & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2972 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "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 & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2971 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2968 }, "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": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "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, "tippecanoe:retain_points_multiplier_sequence": 430 }, "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 & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "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, "tippecanoe:retain_points_multiplier_sequence": 432 }, "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": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2966 }, "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 & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2967 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2965 }, "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": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "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, "tippecanoe:retain_points_multiplier_sequence": 434 }, "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 & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "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, "tippecanoe:retain_points_multiplier_sequence": 437 }, "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 & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "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, "tippecanoe:retain_points_multiplier_sequence": 440 }, "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": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3377 }, "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 & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3376 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3375 }, "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 & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3374 }, "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": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3373 }, "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": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 568 }, "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 & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3372 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3370 }, "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": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3371 }, "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": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "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": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3369 }, "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 & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4127 }, "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": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "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 & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3223 }, "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": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3239 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3212 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4276 }, "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": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3211 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3336 }, "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": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3335 }, "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 & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3220 }, "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 & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3222 }, "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": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3221 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3323 }, "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 & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3324 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3313 }, "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 & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3314 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3305 }, "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": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3306 }, "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 & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3219 }, "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 & Clearfield Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3232 }, "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 & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3236 }, "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 & Constanso Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3233 }, "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 & El Mirasol Pl", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3235 }, "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 & Sylvan Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3240 }, "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 & Vale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3241 }, "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 & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3237 }, "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 & Paraiso Pl", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3238 }, "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": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3218 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1734 }, "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": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "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 & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3234 }, "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 & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3217 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3215 }, "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": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3216 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4271 }, "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": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3693 }, "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": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3692 }, "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, "tippecanoe:retain_points_multiplier_sequence": 453 }, "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 Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3900 }, "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": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "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/SFSU", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1736 }, "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 DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3924 }, "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": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1731 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3694 }, "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": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3695 }, "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": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1732 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4272 }, "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 & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4270 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "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": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "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 & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "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 & Acevedo Ave .", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "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": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "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 NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4260 }, "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": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "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": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "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": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "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": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 806 }, "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": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "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": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3690 }, "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": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3691 }, "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": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "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": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 803 }, "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 & Tapia Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1630 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1629 }, "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 NS/W-SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4261 }, "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": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "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": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "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": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "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": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "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, "tippecanoe:retain_points_multiplier_sequence": 834 }, "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 & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "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, "tippecanoe:retain_points_multiplier_sequence": 885 }, "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": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "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 & California Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "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": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2784 }, "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": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3927 }, "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 & FUNSTON AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "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, "tippecanoe:retain_points_multiplier_sequence": 832 }, "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": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "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 & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "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 & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "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 & 14 Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4101 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "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": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "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": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4083 }, "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": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1673 }, "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": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "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": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1672 }, "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": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "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": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "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, "tippecanoe:retain_points_multiplier_sequence": 830 }, "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 & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "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 Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3746 }, "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 St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3857 }, "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": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 829 }, "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": "8th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "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, "tippecanoe:retain_points_multiplier_sequence": 826 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "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": "California St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 828 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "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": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "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": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "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": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3845 }, "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": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4160 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3750 }, "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": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "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": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "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": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "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": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 133 }, "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": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "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": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2781 }, "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": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4196 }, "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": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "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, "tippecanoe:retain_points_multiplier_sequence": 104 }, "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": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1657 }, "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 & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "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": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "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": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2786 }, "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": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "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": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2785 }, "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": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "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, "tippecanoe:retain_points_multiplier_sequence": 102 }, "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 & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "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, "tippecanoe:retain_points_multiplier_sequence": 100 }, "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": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "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": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4099 }, "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": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4098 }, "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 & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1656 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "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": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1654 }, "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": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "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": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "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, "tippecanoe:retain_points_multiplier_sequence": 256 }, "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": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "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": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1652 }, "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": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "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": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "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": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3963 }, "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, "tippecanoe:retain_points_multiplier_sequence": 825 }, "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 & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 824 }, "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": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "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": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "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, "tippecanoe:retain_points_multiplier_sequence": 235 }, "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": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "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": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "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": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "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, "tippecanoe:retain_points_multiplier_sequence": 240 }, "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": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "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": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "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": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "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": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3102 }, "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 & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "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": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "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": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 675 }, "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 & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1415 }, "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": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "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 & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 853 }, "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 & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "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": "California St & Maple St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "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 & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "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": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "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, "tippecanoe:retain_points_multiplier_sequence": 678 }, "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": "ARGUELLO BLVD & EUCLID AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3931 }, "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": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "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 & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4299 }, "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": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "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": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "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": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 681 }, "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 & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "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": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "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, "tippecanoe:retain_points_multiplier_sequence": 230 }, "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": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "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, "tippecanoe:retain_points_multiplier_sequence": 233 }, "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": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "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": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "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": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 918 }, "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": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "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": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3940 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3941 }, "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": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1650 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "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": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1648 }, "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": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "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 & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "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": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 674 }, "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 & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3461 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3483 }, "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": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3484 }, "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": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "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": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "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 & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "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": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "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": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3253 }, "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": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "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": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1886 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3255 }, "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 & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3254 }, "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": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3256 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2177 }, "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 & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2175 }, "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 & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2176 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "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": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "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": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "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": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "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": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2173 }, "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": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2174 }, "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": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2066 }, "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 Way & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2171 }, "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": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4078 }, "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": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "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": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "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 & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "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": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "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": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2169 }, "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": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1999 }, "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": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4140 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4141 }, "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": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2065 }, "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": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3797 }, "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, "tippecanoe:retain_points_multiplier_sequence": 269 }, "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": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2069 }, "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": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3800 }, "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 Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "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 Avenue at Lawton Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3919 }, "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": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2068 }, "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 & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3799 }, "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": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2091 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1757 }, "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": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1756 }, "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 & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "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, "tippecanoe:retain_points_multiplier_sequence": 330 }, "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": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "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": "Noriega St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "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": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "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": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2067 }, "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": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3798 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "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 & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1755 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1753 }, "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": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1752 }, "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, "tippecanoe:retain_points_multiplier_sequence": 270 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3890 }, "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 & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3891 }, "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": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "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": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1750 }, "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 & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "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, "tippecanoe:retain_points_multiplier_sequence": 276 }, "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 & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "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, "tippecanoe:retain_points_multiplier_sequence": 278 }, "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": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "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 & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2170 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2167 }, "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": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2168 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "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": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1997 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "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 & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2063 }, "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 & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "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": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2060 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "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": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "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": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2721 }, "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": "Parnassus Ave &4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4192 }, "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": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4193 }, "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": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2196 }, "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 & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1994 }, "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": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2000 }, "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": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1632 }, "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, "tippecanoe:retain_points_multiplier_sequence": 910 }, "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": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "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": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "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": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2723 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2726 }, "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": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2727 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1637 }, "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": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "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": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2733 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "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": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "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": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3972 }, "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": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3653 }, "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": "455 Warren Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3650 }, "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, "tippecanoe:retain_points_multiplier_sequence": 243 }, "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": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "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": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "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": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "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": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3649 }, "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": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3648 }, "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 & Devonshire Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3652 }, "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": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3651 }, "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": "117 Warren Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3647 }, "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": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3654 }, "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": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2656 }, "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": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "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, "tippecanoe:retain_points_multiplier_sequence": 895 }, "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": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "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 & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "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": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "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, "tippecanoe:retain_points_multiplier_sequence": 875 }, "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": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "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": "Walnut St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3646 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1411 }, "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 & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "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": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1416 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1679 }, "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 & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "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": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "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": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3127 }, "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": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "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, "tippecanoe:retain_points_multiplier_sequence": 891 }, "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": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 892 }, "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 & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2921 }, "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 & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2912 }, "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": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2920 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "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": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2923 }, "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": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2922 }, "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": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3357 }, "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, "tippecanoe:retain_points_multiplier_sequence": 848 }, "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": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3337 }, "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": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3338 }, "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": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "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": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "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": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2548 }, "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": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1675 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2917 }, "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": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "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 & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "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": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3479 }, "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 & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3480 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3466 }, "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 & Chabot Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3467 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3482 }, "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": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3481 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "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 & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "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 St & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "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 Street & Shrader Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4085 }, "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": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "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": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3168 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1884 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "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 & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4118 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1866 }, "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 & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1865 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1863 }, "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": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1864 }, "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": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3476 }, "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": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3477 }, "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 & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "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": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2547 }, "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": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3469 }, "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": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "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": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "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": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2544 }, "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": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "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": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4205 }, "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": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2545 }, "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 & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3468 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3475 }, "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": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3474 }, "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": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4207 }, "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": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3747 }, "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": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "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": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4203 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4215 }, "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": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4214 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "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": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1854 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2554 }, "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": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1877 }, "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": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1878 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2555 }, "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": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1862 }, "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 & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "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": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1875 }, "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": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 858 }, "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 & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "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 & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "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 & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "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": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1390 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3341 }, "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 & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3342 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3360 }, "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": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3359 }, "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 & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "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": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1682 }, "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": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3464 }, "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": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "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": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "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": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "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 & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "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": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "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": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1678 }, "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": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1370 }, "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": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1425 }, "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": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "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": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3361 }, "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": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3362 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "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 & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1562 }, "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": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1566 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3343 }, "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": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3344 }, "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": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1567 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "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": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "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": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "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": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "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 & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1559 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1538 }, "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": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1427 }, "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": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1426 }, "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 & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1568 }, "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": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1540 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3462 }, "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": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3463 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2256 }, "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": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2255 }, "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": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3465 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2258 }, "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 & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4206 }, "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": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2261 }, "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": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "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": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2260 }, "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 & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1376 }, "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 & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "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": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "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": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1856 }, "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 & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1819 }, "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": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1857 }, "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 & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1858 }, "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": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1867 }, "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": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1382 }, "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": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1868 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "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": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "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": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1826 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2272 }, "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": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2271 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1881 }, "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 & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "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": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "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": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2262 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1554 }, "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": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1555 }, "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 & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1887 }, "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": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "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": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "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 & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1837 }, "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 & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "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": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "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": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3169 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3257 }, "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": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3775 }, "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": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "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": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3252 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "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": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "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": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1823 }, "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": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "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 & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "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": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "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": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "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": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3250 }, "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": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "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": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3251 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "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 & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2731 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2728 }, "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": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2729 }, "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": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3949 }, "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": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "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, "tippecanoe:retain_points_multiplier_sequence": 908 }, "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": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 909 }, "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": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "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": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2725 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "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 & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "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": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "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 & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 689 }, "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": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 692 }, "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": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2551 }, "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": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "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": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "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": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1635 }, "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": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "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": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1633 }, "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": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3962 }, "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": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "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": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "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": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2552 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1832 }, "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 & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "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 & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1821 }, "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": "Haight St & Buena Vista West Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "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": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "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": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3756 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "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 & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "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": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "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 & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "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 & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "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 & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 691 }, "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 & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 685 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3909 }, "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": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 687 }, "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 & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3548 }, "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": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3547 }, "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": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3048 }, "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": "415 Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3049 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3056 }, "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 & Lower Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3057 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3055 }, "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": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3054 }, "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": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "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": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "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": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "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": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2807 }, "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": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2538 }, "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": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "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": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "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": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "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": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "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 & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "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": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "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": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "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": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "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": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "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": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3052 }, "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": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3053 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "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": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "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": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "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": "341 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1133 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "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": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "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": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "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": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "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, "tippecanoe:retain_points_multiplier_sequence": 379 }, "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 & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "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": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "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": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "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": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "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": "Market St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2504 }, "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": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "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": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "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 & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "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": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "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": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "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": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "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, "tippecanoe:retain_points_multiplier_sequence": 820 }, "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 Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "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": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "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": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2780 }, "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": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3051 }, "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": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 823 }, "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": "Roosevelt Way&Buena Vista Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3974 }, "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": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 822 }, "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": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "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 & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3050 }, "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": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3058 }, "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": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "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": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "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": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "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, "tippecanoe:retain_points_multiplier_sequence": 310 }, "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": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "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": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "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 St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3933 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3793 }, "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": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1404 }, "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": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3982 }, "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, "tippecanoe:retain_points_multiplier_sequence": 312 }, "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": "14th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "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 & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "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": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "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": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2505 }, "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": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "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 & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2508 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2507 }, "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": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3934 }, "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 & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "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": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "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": "17th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "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 & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "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 & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "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": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "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": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "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 & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "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": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "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, "tippecanoe:retain_points_multiplier_sequence": 387 }, "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": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "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 & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "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": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "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 & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "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": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "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": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "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": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1804 }, "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": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "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": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "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": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "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": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "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": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1484 }, "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": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "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": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "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": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "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": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "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": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "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, "tippecanoe:retain_points_multiplier_sequence": 393 }, "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": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "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": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "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": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "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 & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "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": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "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 & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "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": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2962 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2963 }, "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": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4124 }, "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": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4123 }, "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": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2961 }, "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, "tippecanoe:retain_points_multiplier_sequence": 356 }, "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 & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "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": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "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": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3246 }, "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": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "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": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "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": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3245 }, "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": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "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 & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "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": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2992 }, "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": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "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": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "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": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "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": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "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, "tippecanoe:retain_points_multiplier_sequence": 286 }, "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 & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "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, "tippecanoe:retain_points_multiplier_sequence": 288 }, "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": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "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 & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "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 & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2960 }, "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": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "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": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "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 & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3368 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3367 }, "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": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3366 }, "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": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "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": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4135 }, "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, "tippecanoe:retain_points_multiplier_sequence": 321 }, "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": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "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, "tippecanoe:retain_points_multiplier_sequence": 303 }, "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": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "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, "tippecanoe:retain_points_multiplier_sequence": 323 }, "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": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "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": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "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, "tippecanoe:retain_points_multiplier_sequence": 447 }, "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 & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "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, "tippecanoe:retain_points_multiplier_sequence": 448 }, "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": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "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": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3639 }, "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": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "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": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3489 }, "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 & Forest Side Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3488 }, "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 & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3490 }, "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 Leave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4130 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3911 }, "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": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3496 }, "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 Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3493 }, "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 Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3643 }, "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 Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3494 }, "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 Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3780 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3491 }, "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": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3492 }, "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 t", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4226 }, "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": "Ulloa St & West Portal Ave Arrive", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4129 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3641 }, "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 Station Inbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3170 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3825 }, "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 Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4227 }, "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 Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3495 }, "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 & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3642 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3637 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3970 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3838 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3636 }, "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 & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3638 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3644 }, "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": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3645 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3588 }, "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": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3589 }, "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 Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3851 }, "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": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "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": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2114 }, "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": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3733 }, "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": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "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": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "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": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "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": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "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": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "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": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3945 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2116 }, "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": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3946 }, "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": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1516 }, "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": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2117 }, "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": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "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/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2118 }, "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 & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3944 }, "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/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3947 }, "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": "Laguna Honda Blvd & Dewey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2115 }, "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": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2122 }, "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 Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2203 }, "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": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "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": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3673 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1772 }, "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 Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1773 }, "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": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3001 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3674 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3675 }, "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 & Hernandez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3676 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3679 }, "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": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3680 }, "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 Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2940 }, "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 & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2944 }, "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 & Dorchester Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "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": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2941 }, "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 & Juanita Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2380 }, "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 & Marne Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2379 }, "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": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "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": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2375 }, "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": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2376 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "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": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2120 }, "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 & Waithman Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2946 }, "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": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "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 & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "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": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2125 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "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 & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2938 }, "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": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2839 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2323 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3214 }, "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": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4134 }, "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, "tippecanoe:retain_points_multiplier_sequence": 439 }, "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": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "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": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3213 }, "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, "tippecanoe:retain_points_multiplier_sequence": 428 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4128 }, "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": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3041 }, "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": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3042 }, "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": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4267 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3242 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4021 }, "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": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3243 }, "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/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3275 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3044 }, "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": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3043 }, "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": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2013 }, "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/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3640 }, "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 AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3895 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3274 }, "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": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3822 }, "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": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3826 }, "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": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "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": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1488 }, "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": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3037 }, "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": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "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": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "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": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3038 }, "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": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1490 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2012 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3827 }, "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 & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2011 }, "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": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3899 }, "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": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3280 }, "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 & San Fernando Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3279 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3277 }, "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 Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3278 }, "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": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3276 }, "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 & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3163 }, "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": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3162 }, "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": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4064 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3819 }, "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 & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3818 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2616 }, "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": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2615 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4074 }, "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, "tippecanoe:retain_points_multiplier_sequence": 451 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4075 }, "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 & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "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 & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "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": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3914 }, "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": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3915 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3784 }, "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, "tippecanoe:retain_points_multiplier_sequence": 407 }, "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, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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 Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3785 }, "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 Avenue & Holloway St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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 Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "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 & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1911 }, "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": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "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": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "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": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4139 }, "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": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "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": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "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": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "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 & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1913 }, "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": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1910 }, "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": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "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": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "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": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2010 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2622 }, "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 & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3817 }, "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": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "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&Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3989 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "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&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3990 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3886 }, "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 & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "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 Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2313 }, "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": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "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": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "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 & Ravenwood Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3729 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3727 }, "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 & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3728 }, "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": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3726 }, "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 & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "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 & El Verano Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2301 }, "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": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2312 }, "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 & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3725 }, "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": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3730 }, "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 & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2806 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2797 }, "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": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2796 }, "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": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "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": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2801 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "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 & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2309 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2316 }, "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": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3820 }, "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 & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "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 & Fairfield Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2629 }, "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 & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3815 }, "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": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2623 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "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": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "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 & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1793 }, "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 & JULES AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3885 }, "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 & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1790 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3816 }, "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": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2802 }, "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": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2803 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "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 St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "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 Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3991 }, "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": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "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 & Capitol AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3884 }, "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 & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1795 }, "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 & Granada Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "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": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3883 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2792 }, "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 & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "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": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2791 }, "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 & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1796 }, "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": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3930 }, "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": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2790 }, "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 & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "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 & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "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 & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2659 }, "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": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "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": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "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 & Aquavista Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3204 }, "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": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3206 }, "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": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "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": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3677 }, "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": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "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": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3678 }, "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": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "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": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3429 }, "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": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "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": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3205 }, "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": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "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": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2911 }, "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": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "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": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "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": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2910 }, "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": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "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": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "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": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "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": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3751 }, "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": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "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": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "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": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1808 }, "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": "6 Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2834 }, "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": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "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": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2841 }, "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": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1785 }, "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": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2936 }, "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": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "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": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "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": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4191 }, "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": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3887 }, "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 & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "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": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2838 }, "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": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2835 }, "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": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1812 }, "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 & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "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": "Clipper St & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "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": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3917 }, "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": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3918 }, "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": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "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": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "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 & Fowler Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3421 }, "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": "Teresita Blvd & Evelyn Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3417 }, "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": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "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 & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3428 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3425 }, "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 & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3424 }, "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": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3430 }, "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": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3047 }, "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": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3431 }, "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": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2322 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2325 }, "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": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2324 }, "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": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3046 }, "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": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3971 }, "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": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3045 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "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": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2327 }, "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": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "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": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3423 }, "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 & Gaviota Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3422 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3416 }, "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 & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3415 }, "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 & Bella Vista Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3414 }, "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": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3427 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3411 }, "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": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3410 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2668 }, "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": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2667 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1805 }, "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": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1806 }, "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": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "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": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1631 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "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": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "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": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "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": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "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": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 551 }, "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": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "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": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "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": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "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": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "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": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "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": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1316 }, "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 & Amber Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "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": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "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": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "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": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "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": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "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, "tippecanoe:retain_points_multiplier_sequence": 509 }, "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": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "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 & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "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": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1329 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "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 & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "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": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "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": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "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": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "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 & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3942 }, "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": "24th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "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": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2357 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "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": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "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": "25th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "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 & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "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 & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1330 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "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 & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1341 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "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 & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "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 & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "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": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "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": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3957 }, "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, "tippecanoe:retain_points_multiplier_sequence": 557 }, "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 & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "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": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "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 Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "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 (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3932 }, "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 & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "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 & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "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 St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "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 Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "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 St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "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 Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "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 St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "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 & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "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 & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "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 Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "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 Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "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": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1349 }, "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 & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 656 }, "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": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 659 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "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 & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "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 & Arbor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "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 & Sussex St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "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": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "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 & Farnum St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "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": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "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": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "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": "164 Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 655 }, "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": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1359 }, "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": "33 Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2475 }, "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": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3419 }, "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 & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "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 St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "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": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4092 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2310 }, "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 & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2311 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2306 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "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": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3993 }, "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 & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1710 }, "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": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1709 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "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": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2043 }, "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": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2044 }, "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": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2303 }, "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": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "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": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2304 }, "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 & Flood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "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": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1575 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3418 }, "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": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3420 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3413 }, "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": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3412 }, "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 & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3433 }, "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": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3426 }, "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": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2299 }, "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": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3432 }, "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 & Detroit St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "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 & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "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": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2298 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2763 }, "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 (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "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": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2757 }, "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": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "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 LOOP", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2762 }, "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 AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2758 }, "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": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2761 }, "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 & Phelan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2638 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3766 }, "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": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "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": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1718 }, "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/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "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": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2626 }, "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": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "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": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "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": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1916 }, "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": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2318 }, "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": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1776 }, "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": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1777 }, "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": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "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": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "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&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4269 }, "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/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2617 }, "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": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3085 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3769 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3084 }, "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": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "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": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "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/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1715 }, "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": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1781 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3854 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2319 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "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": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2320 }, "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, "tippecanoe:retain_points_multiplier_sequence": 59 }, "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, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4250 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3081 }, "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/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "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": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3074 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3821 }, "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 & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3080 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "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": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1711 }, "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": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3860 }, "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 & SAN JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1784 }, "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": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1783 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3142 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3861 }, "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": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4198 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3072 }, "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": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3853 }, "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": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4197 }, "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": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2639 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3087 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3086 }, "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": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3770 }, "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": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2641 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "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 & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1719 }, "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 at Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3889 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1716 }, "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": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1717 }, "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, "tippecanoe:retain_points_multiplier_sequence": 721 }, "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": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "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 & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "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 & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2293 }, "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 & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2291 }, "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": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2296 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3771 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3094 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "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 & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3772 }, "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": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3083 }, "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": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2294 }, "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": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 988 }, "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": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2292 }, "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": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "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, "tippecanoe:retain_points_multiplier_sequence": 723 }, "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": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "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": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "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 & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "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": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 963 }, "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": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "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": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 720 }, "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": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "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": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 719 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "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": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "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": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3171 }, "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": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3172 }, "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 & Havelock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3075 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3098 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3774 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3096 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3097 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3773 }, "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 & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3095 }, "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": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3092 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2635 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "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 & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4159 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2618 }, "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": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "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": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3787 }, "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 & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2454 }, "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": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2453 }, "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": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "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 St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4219 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2747 }, "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": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "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 & Norton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "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, "tippecanoe:retain_points_multiplier_sequence": 45 }, "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": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 778 }, "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": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "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": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2632 }, "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 & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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 & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "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 & Francis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "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": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2445 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1513 }, "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": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "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": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 783 }, "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 & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2465 }, "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": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2464 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2754 }, "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 & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2753 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2746 }, "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": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2745 }, "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": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "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": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "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": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1741 }, "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 St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1962 }, "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": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2335 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "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 St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1940 }, "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 OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1957 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2330 }, "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": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2329 }, "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": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1956 }, "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": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "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": "Jones St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "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": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "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 & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "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": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "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": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "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": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "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 & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4195 }, "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": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2872 }, "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": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2337 }, "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": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2338 }, "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": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3852 }, "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": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "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": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3282 }, "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": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1474 }, "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 & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3768 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2891 }, "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 & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "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": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2871 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "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": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2341 }, "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": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "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": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2128 }, "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": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "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": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "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, "tippecanoe:retain_points_multiplier_sequence": 945 }, "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 & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 946 }, "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, "tippecanoe:retain_points_multiplier_sequence": 940 }, "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 & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "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, "tippecanoe:retain_points_multiplier_sequence": 938 }, "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": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 939 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2151 }, "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": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2152 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3523 }, "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": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3522 }, "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 NW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4266 }, "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": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4259 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3509 }, "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": "Union St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3508 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3571 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3570 }, "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": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3569 }, "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": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4082 }, "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&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4265 }, "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": "Van Ness Ave & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3557 }, "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": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4188 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2339 }, "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": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "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": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2818 }, "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": "Francisco Street & Polk Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4093 }, "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": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3552 }, "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": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 951 }, "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": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3553 }, "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": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 952 }, "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": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3551 }, "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": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2336 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2813 }, "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 & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2814 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2816 }, "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": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3560 }, "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": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3561 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3537 }, "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": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3538 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3583 }, "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": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3584 }, "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": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "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": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3531 }, "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": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "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": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3532 }, "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 & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2815 }, "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": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "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 & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "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 & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2027 }, "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 & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2029 }, "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": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2021 }, "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 & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3658 }, "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": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3655 }, "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": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3100 }, "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": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3663 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3114 }, "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 & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3115 }, "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 & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3101 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "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": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3119 }, "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": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3585 }, "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": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "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": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3657 }, "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 & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3549 }, "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": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3576 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2693 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3913 }, "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": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2694 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2809 }, "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 & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "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": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2820 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2685 }, "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": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "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": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3564 }, "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": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2038 }, "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": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3565 }, "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": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2037 }, "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": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3670 }, "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": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3554 }, "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": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3893 }, "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": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "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": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2030 }, "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": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2832 }, "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": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3666 }, "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": "Sacramento St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3107 }, "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": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "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": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 993 }, "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": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3106 }, "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": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "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": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4277 }, "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": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3126 }, "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 & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3579 }, "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": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3550 }, "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": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "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": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2826 }, "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": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "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": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3120 }, "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": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "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": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3844 }, "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": "Polk St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "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": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "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": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3577 }, "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": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4275 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1936 }, "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 & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1943 }, "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 & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1942 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "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": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "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": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3395 }, "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 St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3396 }, "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 OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1948 }, "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 & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1949 }, "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": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3518 }, "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": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3519 }, "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": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "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": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3512 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "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": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1965 }, "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": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3513 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "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 & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1950 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1967 }, "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": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3520 }, "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 & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3521 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3515 }, "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": "Union St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3514 }, "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 & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3394 }, "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": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3398 }, "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": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "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": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3397 }, "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 & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "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 & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "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 & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3873 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "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": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2231 }, "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": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "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": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2881 }, "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 & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2887 }, "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": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "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": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "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": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2880 }, "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": "Stockton St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3291 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3536 }, "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": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3535 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2230 }, "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": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2229 }, "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": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3526 }, "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": "Mason St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2240 }, "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": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3525 }, "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 & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2239 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "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": "Mason St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "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": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3503 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3501 }, "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": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3502 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "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 & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "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": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2226 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2679 }, "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": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2678 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "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": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1938 }, "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": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "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": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1959 }, "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": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "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": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "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 & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2022 }, "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": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2025 }, "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": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3661 }, "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": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 999 }, "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": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1952 }, "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": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3659 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2680 }, "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": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2681 }, "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": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2026 }, "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": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1762 }, "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": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1944 }, "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": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 996 }, "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": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3662 }, "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": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1768 }, "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": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "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": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "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": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3112 }, "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": "Polk St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2811 }, "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 & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 887 }, "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, "tippecanoe:retain_points_multiplier_sequence": 872 }, "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": "California St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "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": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4274 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2821 }, "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": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2822 }, "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": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3109 }, "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 & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "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": "Hyde St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "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, "tippecanoe:retain_points_multiplier_sequence": 866 }, "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": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "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": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "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": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3113 }, "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, "tippecanoe:retain_points_multiplier_sequence": 877 }, "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": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "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": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1759 }, "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": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1960 }, "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": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 815 }, "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": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3346 }, "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 & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1764 }, "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": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1758 }, "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": "Sutter St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3350 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "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": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2676 }, "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": "Jackson St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "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": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2691 }, "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": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2036 }, "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": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3660 }, "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": "Clay St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "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": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3669 }, "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": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "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": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2683 }, "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": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2238 }, "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": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "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 & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2237 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2235 }, "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": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "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": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "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, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "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": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "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": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2885 }, "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": "Washington St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3667 }, "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, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3665 }, "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": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3664 }, "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": "Mason St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2243 }, "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": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3124 }, "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 & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "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": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "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": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3110 }, "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, "tippecanoe:retain_points_multiplier_sequence": 868 }, "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 & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "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": "California St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "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 & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 817 }, "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": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "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": "Leavenworth St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "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": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3347 }, "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": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "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 & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 900 }, "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, "tippecanoe:retain_points_multiplier_sequence": 879 }, "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": "California St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "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 & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3364 }, "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": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3353 }, "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": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4125 }, "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": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2333 }, "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": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2334 }, "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": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3794 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "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": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3951 }, "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 & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2157 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2147 }, "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": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2148 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3289 }, "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 & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3290 }, "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": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3287 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2149 }, "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": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2150 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3404 }, "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": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3405 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3407 }, "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": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3408 }, "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": "COIT TOWER", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "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": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3406 }, "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": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3403 }, "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": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3297 }, "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": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3534 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3285 }, "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": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3284 }, "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 & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "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": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3511 }, "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": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3510 }, "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": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3293 }, "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": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2690 }, "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 & GRANT AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3876 }, "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": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3516 }, "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 & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3517 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3527 }, "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": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3528 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "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": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "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": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "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": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2672 }, "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 & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "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": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1727 }, "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": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2677 }, "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": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "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": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3948 }, "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": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "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 & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3134 }, "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": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3133 }, "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": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3139 }, "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": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "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 & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "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": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "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": "Battery St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3140 }, "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": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "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": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2684 }, "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": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3745 }, "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": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2689 }, "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": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3135 }, "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": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "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": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "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": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4217 }, "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": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4249 }, "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": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "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 & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3292 }, "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": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3298 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2878 }, "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": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2877 }, "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": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3121 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2900 }, "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": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2899 }, "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": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3283 }, "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": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "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": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3294 }, "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": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3125 }, "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": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "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": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "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": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "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": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 995 }, "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": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3108 }, "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": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "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": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "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": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3111 }, "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 & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "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": "Kearny St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1722 }, "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, "tippecanoe:retain_points_multiplier_sequence": 870 }, "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 & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 871 }, "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, "tippecanoe:retain_points_multiplier_sequence": 889 }, "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": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 890 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2876 }, "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": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "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, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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 & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "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": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "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, "tippecanoe:retain_points_multiplier_sequence": 898 }, "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": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2874 }, "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": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2873 }, "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": "Sutter St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3356 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2902 }, "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 & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2901 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2897 }, "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": "Powell St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2898 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3296 }, "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": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3295 }, "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": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3363 }, "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": "Post St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2848 }, "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": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 865 }, "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": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2949 }, "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": "Sutter St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3348 }, "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": "POST & GRANT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4186 }, "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": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "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": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3668 }, "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": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3141 }, "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": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3117 }, "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": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3116 }, "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": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "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": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3132 }, "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": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3123 }, "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": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 882 }, "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 & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "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": "Clay St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "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": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3137 }, "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": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3099 }, "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": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3130 }, "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": "California St & SANSOME ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 894 }, "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": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3131 }, "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 & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 893 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4072 }, "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, "tippecanoe:retain_points_multiplier_sequence": 850 }, "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 & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 851 }, "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": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "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": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "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": "Pine St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2779 }, "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": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 818 }, "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 & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1729 }, "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": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1724 }, "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 St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "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": "POST & MONTGOMERY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4187 }, "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 & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2525 }, "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": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2526 }, "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": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3136 }, "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": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "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": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3967 }, "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": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3358 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3138 }, "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": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4108 }, "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, "tippecanoe:retain_points_multiplier_sequence": 814 }, "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": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3879 }, "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 & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2498 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3943 }, "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 & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "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": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2480 }, "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": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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": "Market St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2530 }, "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": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3401 }, "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, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4107 }, "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": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "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": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "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": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "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 & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1472 }, "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/Pier 5", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "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 & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1476 }, "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": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "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": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "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": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3103 }, "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": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "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 & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "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": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 862 }, "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": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2778 }, "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": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 856 }, "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": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4121 }, "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": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "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": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "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": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3961 }, "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": "Drumm St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1401 }, "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": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "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 & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2523 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2499 }, "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 & BEALE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "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": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2511 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1477 }, "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 & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "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 & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "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/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1460 }, "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 & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3753 }, "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": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3950 }, "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, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3875 }, "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": "Spear St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3249 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3916 }, "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": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "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, "tippecanoe:retain_points_multiplier_sequence": 56 }, "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, "tippecanoe:retain_points_multiplier_sequence": 57 }, "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, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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": "EMBARCADERO & ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3928 }, "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": "STEUART ST & FRANCISCO ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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": "Main St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "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 & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3273 }, "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": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3269 }, "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, "tippecanoe:retain_points_multiplier_sequence": 51 }, "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": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "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 & Donchee Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4293 }, "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": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3268 }, "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": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1645 }, "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": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4119 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3267 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3272 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3270 }, "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": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3271 }, "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 Stt & Steuart St NW-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4268 }, "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": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4179 }, "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": "Front & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4291 }, "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": "Market St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2512 }, "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": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "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": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "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 & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2390 }, "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": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4068 }, "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": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3402 }, "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": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3399 }, "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": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4292 }, "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": "Main St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2206 }, "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 St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2455 }, "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 & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4231 }, "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 & Beale St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "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": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2469 }, "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": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "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": "Howard St. & Beale St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4137 }, "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": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3400 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4149 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2204 }, "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": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4146 }, "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": "Howard St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1932 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1641 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1642 }, "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": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1640 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4247 }, "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, "tippecanoe:retain_points_multiplier_sequence": 148 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4136 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4138 }, "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": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4145 }, "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": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "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": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1468 }, "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": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3959 }, "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": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2473 }, "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": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "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": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1933 }, "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": "Hward St&Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4183 }, "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": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1934 }, "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": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "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": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1930 }, "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": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "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": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1614 }, "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": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4144 }, "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": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4288 }, "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": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1456 }, "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": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4280 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "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": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "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": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1850 }, "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&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4263 }, "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&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4264 }, "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 & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3847 }, "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": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4034 }, "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": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1814 }, "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": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 697 }, "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 & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1813 }, "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": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1815 }, "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": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "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 H & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4115 }, "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 & 12th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4116 }, "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 & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "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 & Gateview AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "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": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3744 }, "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 C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4117 }, "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 D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4132 }, "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": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "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 & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 706 }, "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": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "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": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "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 & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4114 }, "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 H & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "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": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3437 }, "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": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3436 }, "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": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "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 & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4113 }, "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 & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 700 }, "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, "tippecanoe:retain_points_multiplier_sequence": 702 }, "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": "Avenue H & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4112 }, "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 H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 905 }, "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": "California St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "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": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4070 }, "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": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "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": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3935 }, "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 Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3936 }, "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 St & Nimitz Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2285 }, "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": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3937 }, "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": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "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": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "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": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "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": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3938 }, "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": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2355 }, "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": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3939 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "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": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1901 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3339 }, "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": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3340 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1687 }, "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": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3351 }, "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 & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3352 }, "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": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3354 }, "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": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2844 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "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": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "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": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2846 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "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 & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "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": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1436 }, "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": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3345 }, "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": "Post St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "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": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "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": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3203 }, "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": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3580 }, "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": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3365 }, "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": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3581 }, "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": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "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": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3578 }, "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": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3559 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3558 }, "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 & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4278 }, "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": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4216 }, "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": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2654 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3575 }, "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 & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3574 }, "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": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4218 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "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": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "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": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2253 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2264 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2265 }, "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": "McAllister St & Gough st", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4204 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3555 }, "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": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3556 }, "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": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3486 }, "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": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "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 & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2275 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2263 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2277 }, "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": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2278 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "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": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "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": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1869 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1547 }, "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": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1548 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "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": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1891 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2270 }, "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": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "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": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1859 }, "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": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "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": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2131 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1557 }, "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": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1558 }, "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": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1828 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4158 }, "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": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1546 }, "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 & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1829 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "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": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "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": "785 Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2252 }, "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": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "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": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "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": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1799 }, "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": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1872 }, "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": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1519 }, "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": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "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": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "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": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "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": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2697 }, "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": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "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": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4061 }, "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": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1831 }, "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": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4076 }, "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": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2522 }, "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": "Page St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "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": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4229 }, "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": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2695 }, "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": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "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": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3627 }, "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": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "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": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "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": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2827 }, "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": "Sutter St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3355 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "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": "Polk St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "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": "Post St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "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": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3349 }, "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 & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "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": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1685 }, "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": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "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 & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "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": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "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": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2842 }, "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": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "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": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "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": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1747 }, "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": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2647 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "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": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "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": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3582 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "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": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "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": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3478 }, "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": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3566 }, "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": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2276 }, "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": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3567 }, "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": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2273 }, "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": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2274 }, "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": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "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": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1742 }, "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": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1433 }, "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": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3472 }, "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": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "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": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "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": "Turk St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3470 }, "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": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1963 }, "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": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2268 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1746 }, "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": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3954 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "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": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2266 }, "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": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1955 }, "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": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1765 }, "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": "Post St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "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": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "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": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1761 }, "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": "Jones St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2058 }, "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": "Post St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2951 }, "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": "Geary Blvd & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "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": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2057 }, "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": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1763 }, "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": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2650 }, "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 & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "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": "Ellis St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "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": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "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": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "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": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "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 & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "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": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "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": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4164 }, "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": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "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": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3979 }, "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": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3966 }, "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": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "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 & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "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": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "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": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3473 }, "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 & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "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": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "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": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3471 }, "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 & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4157 }, "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": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2254 }, "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 N", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4063 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2497 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "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": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "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": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "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": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3485 }, "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 & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2488 }, "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": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "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": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4120 }, "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": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2489 }, "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": "7th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "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": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3562 }, "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": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1889 }, "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": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "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": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3563 }, "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": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4079 }, "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": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3767 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3573 }, "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": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3572 }, "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": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3760 }, "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": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3568 }, "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": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "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": "SOUTH VAN NESS AVE & 12TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4056 }, "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, "tippecanoe:retain_points_multiplier_sequence": 298 }, "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": "11th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "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": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "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": "GROVE AND LARKIN", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4081 }, "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": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "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 & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2520 }, "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": "Market St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2493 }, "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": "9TH St AND MARKET St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4180 }, "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": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "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": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "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": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4279 }, "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 & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3859 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4142 }, "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": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4143 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3247 }, "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": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "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": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3965 }, "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": "150 Otis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "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": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2671 }, "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": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "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": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2406 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "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, "tippecanoe:retain_points_multiplier_sequence": 294 }, "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": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "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": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1947 }, "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 & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "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": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4062 }, "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 AND MARKET St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4181 }, "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": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "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": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "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": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2402 }, "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": "8th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "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 & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2403 }, "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 & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "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": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2401 }, "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": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "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": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3841 }, "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 St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "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": "8th St&Howard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4184 }, "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": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1587 }, "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": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "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": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1590 }, "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": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "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": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1589 }, "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": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "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": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "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": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "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": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "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": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1894 }, "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": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4282 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1402 }, "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": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "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": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "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": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3858 }, "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, "tippecanoe:retain_points_multiplier_sequence": 984 }, "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": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3792 }, "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, "tippecanoe:retain_points_multiplier_sequence": 315 }, "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 & SANCHEZ ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "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": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "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 & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "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": "Church St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3980 }, "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": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "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 & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "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": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2500 }, "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": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "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": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "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": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "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": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3791 }, "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": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "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": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3244 }, "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 & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3836 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2532 }, "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": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "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": "Church St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 968 }, "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": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4294 }, "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, "tippecanoe:retain_points_multiplier_sequence": 969 }, "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": "Church St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3788 }, "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 & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "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, "tippecanoe:retain_points_multiplier_sequence": 338 }, "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": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "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": "Church St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 970 }, "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": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2516 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3624 }, "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 & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3623 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3596 }, "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 & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3597 }, "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": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3598 }, "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, "tippecanoe:retain_points_multiplier_sequence": 340 }, "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": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "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": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3599 }, "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": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "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": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3600 }, "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": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "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 & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3601 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3602 }, "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": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3603 }, "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, "tippecanoe:retain_points_multiplier_sequence": 397 }, "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": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "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": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "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, "tippecanoe:retain_points_multiplier_sequence": 374 }, "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": "18th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "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": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "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": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "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": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3748 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "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": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "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": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3749 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3039 }, "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/Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3040 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3034 }, "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": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3035 }, "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": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 972 }, "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": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3036 }, "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 & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "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, "tippecanoe:retain_points_multiplier_sequence": 385 }, "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 & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "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": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "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": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3604 }, "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": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3605 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3606 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3607 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3609 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3608 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3610 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3611 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3612 }, "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 & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3613 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3615 }, "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": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3614 }, "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 & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "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": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2410 }, "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": "14th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4169 }, "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": "15th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "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": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "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": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1592 }, "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 & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2412 }, "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": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2413 }, "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": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "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": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2414 }, "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, "tippecanoe:retain_points_multiplier_sequence": 344 }, "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": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "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": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3813 }, "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": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "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": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2415 }, "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": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4167 }, "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": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4178 }, "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": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4170 }, "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": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1593 }, "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 & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3956 }, "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, "tippecanoe:retain_points_multiplier_sequence": 350 }, "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": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "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": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1594 }, "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": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4171 }, "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": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "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 & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "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": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "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 & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "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, "tippecanoe:retain_points_multiplier_sequence": 771 }, "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": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "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": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "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, "tippecanoe:retain_points_multiplier_sequence": 770 }, "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": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "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, "tippecanoe:retain_points_multiplier_sequence": 342 }, "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": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "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": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1596 }, "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, "tippecanoe:retain_points_multiplier_sequence": 748 }, "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": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "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, "tippecanoe:retain_points_multiplier_sequence": 335 }, "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": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "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, "tippecanoe:retain_points_multiplier_sequence": 749 }, "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 & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "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, "tippecanoe:retain_points_multiplier_sequence": 773 }, "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": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "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": "18th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2418 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "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": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2420 }, "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 & 18 th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4177 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4172 }, "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": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4176 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2423 }, "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 & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "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": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2425 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4173 }, "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": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4175 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1598 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4213 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1599 }, "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": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4212 }, "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, "tippecanoe:retain_points_multiplier_sequence": 751 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "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, "tippecanoe:retain_points_multiplier_sequence": 753 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 754 }, "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": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "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": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1601 }, "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": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2883 }, "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": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "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 & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2884 }, "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": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2893 }, "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": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2653 }, "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": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "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": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3904 }, "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": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2228 }, "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": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "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 & Turk", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4284 }, "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": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4283 }, "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": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3969 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3973 }, "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": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "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": "Ellis street & Powell street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4246 }, "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 St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2879 }, "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, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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 STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "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 St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2890 }, "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 & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3978 }, "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 St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2889 }, "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, "tippecanoe:retain_points_multiplier_sequence": 20 }, "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 STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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": "Powell/Market", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2888 }, "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": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 652 }, "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": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2496 }, "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": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "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": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "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": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3743 }, "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": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "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": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3288 }, "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": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "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": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2646 }, "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 & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2515 }, "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": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2483 }, "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": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3286 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "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 & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2484 }, "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": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "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": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "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": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2396 }, "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": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3901 }, "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 & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2524 }, "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": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "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": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4166 }, "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 & Mary St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4022 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "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": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2399 }, "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, "tippecanoe:retain_points_multiplier_sequence": 227 }, "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": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2398 }, "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": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "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": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2055 }, "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, "tippecanoe:retain_points_multiplier_sequence": 225 }, "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": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "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": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "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 & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2481 }, "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": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "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": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "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 & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2518 }, "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": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2482 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "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": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2393 }, "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 & Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4287 }, "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": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4077 }, "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": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "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": "4th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2391 }, "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": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2392 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4057 }, "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 & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4058 }, "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": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "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 & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "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": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "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 & Third St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3856 }, "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": "Folsom St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1582 }, "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": "4th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "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, "tippecanoe:retain_points_multiplier_sequence": 223 }, "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": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3903 }, "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 & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "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": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "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": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "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": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "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 & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "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": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "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 & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "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": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1585 }, "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": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "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": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "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 & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1847 }, "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 & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1846 }, "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": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1848 }, "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 & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "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": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "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 & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 744 }, "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": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3842 }, "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": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3739 }, "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": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 743 }, "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": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "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": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4190 }, "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": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1845 }, "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, "tippecanoe:retain_points_multiplier_sequence": 224 }, "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": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4165 }, "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": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3983 }, "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 & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 742 }, "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": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 741 }, "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": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4148 }, "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 & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "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": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3453 }, "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 & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3452 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3450 }, "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": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3451 }, "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": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4106 }, "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": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "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": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4084 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "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": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3755 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4131 }, "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, "tippecanoe:retain_points_multiplier_sequence": 72 }, "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": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1580 }, "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": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4289 }, "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": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "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": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1842 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4285 }, "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": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "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": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "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": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4286 }, "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": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "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, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "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": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "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": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3888 }, "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 St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "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 & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4290 }, "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": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1851 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3846 }, "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": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4073 }, "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, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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 & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4105 }, "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": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2107 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2108 }, "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": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3958 }, "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": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "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": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "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": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4248 }, "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": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3448 }, "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 & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3449 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3922 }, "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": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3445 }, "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": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3446 }, "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": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3447 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3740 }, "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, "tippecanoe:retain_points_multiplier_sequence": 218 }, "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, "tippecanoe:retain_points_multiplier_sequence": 221 }, "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": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "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": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "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 & BERRY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3865 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4055 }, "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 & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4049 }, "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 & BERRY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4020 }, "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": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3862 }, "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": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2111 }, "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": "4th St & Berry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4038 }, "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": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3848 }, "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, "tippecanoe:retain_points_multiplier_sequence": 41 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "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": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2112 }, "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": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3444 }, "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": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3443 }, "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": "3rd Street & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4033 }, "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, "tippecanoe:retain_points_multiplier_sequence": 213 }, "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": "4th St & Berry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3987 }, "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": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3986 }, "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": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4012 }, "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": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "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": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "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": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4013 }, "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": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4237 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2868 }, "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 & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2870 }, "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&15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3964 }, "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": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2851 }, "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, "tippecanoe:retain_points_multiplier_sequence": 347 }, "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": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2853 }, "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 & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2852 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2854 }, "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": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "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 & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "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": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "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 & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3628 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3635 }, "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 & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3634 }, "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": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3629 }, "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": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4189 }, "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": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "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 & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "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": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3019 }, "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 & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3020 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "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": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3006 }, "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": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "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": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2097 }, "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, "tippecanoe:retain_points_multiplier_sequence": 367 }, "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, "tippecanoe:retain_points_multiplier_sequence": 369 }, "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": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3008 }, "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": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "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 Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4242 }, "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": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4233 }, "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": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "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": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3009 }, "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, "tippecanoe:retain_points_multiplier_sequence": 365 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4097 }, "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": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "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": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "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": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2101 }, "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": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "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 Street & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4241 }, "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": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4234 }, "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, "tippecanoe:retain_points_multiplier_sequence": 371 }, "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": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "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 & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "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": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "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": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2856 }, "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": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 756 }, "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": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2859 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3630 }, "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": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3631 }, "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": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2858 }, "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, "tippecanoe:retain_points_multiplier_sequence": 757 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "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, "tippecanoe:retain_points_multiplier_sequence": 759 }, "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 & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "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, "tippecanoe:retain_points_multiplier_sequence": 761 }, "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": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 762 }, "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 & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2860 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2861 }, "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": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2862 }, "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": "Sf General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4273 }, "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/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2943 }, "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": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2863 }, "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, "tippecanoe:retain_points_multiplier_sequence": 499 }, "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": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "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": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3632 }, "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 & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3010 }, "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": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "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": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3633 }, "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 & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "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, "tippecanoe:retain_points_multiplier_sequence": 463 }, "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 & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "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": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3013 }, "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 & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3012 }, "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": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3022 }, "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": "Southern Heights Ave & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "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": "De Haro St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3167 }, "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": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3165 }, "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": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "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": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3696 }, "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": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "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": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3004 }, "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, "tippecanoe:retain_points_multiplier_sequence": 500 }, "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 & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "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": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2098 }, "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": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3910 }, "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": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "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 & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3015 }, "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": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "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": "De Haro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "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": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 914 }, "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 & Carolina St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "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": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "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 & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3697 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3707 }, "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": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3706 }, "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": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "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": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3698 }, "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 Street & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4240 }, "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": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4235 }, "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": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3786 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "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 & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "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": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "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": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "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": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "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, "tippecanoe:retain_points_multiplier_sequence": 398 }, "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 & Texas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "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, "tippecanoe:retain_points_multiplier_sequence": 394 }, "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": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "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": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4238 }, "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 Street & 4th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4239 }, "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": "16th St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4236 }, "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": "1731 3RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3882 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3988 }, "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": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3985 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4011 }, "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": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4014 }, "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": "1730 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "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 St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "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/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "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": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "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": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "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": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3759 }, "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 Street & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4010 }, "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 St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4035 }, "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": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4015 }, "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": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3869 }, "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": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3409 }, "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": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4036 }, "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": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "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": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "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 & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3863 }, "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": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4102 }, "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": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "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, "tippecanoe:retain_points_multiplier_sequence": 460 }, "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": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "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 & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2382 }, "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": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2383 }, "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, "tippecanoe:retain_points_multiplier_sequence": 465 }, "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": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2384 }, "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": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "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": "20th St & Texas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3434 }, "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": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3435 }, "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 & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "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": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "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": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "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 & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3699 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3703 }, "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 & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3704 }, "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": "Wisconsin St & Coral Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3705 }, "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": "1095 CONNECTICUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "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": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4103 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4104 }, "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": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "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": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2387 }, "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": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2389 }, "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": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2388 }, "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": "14 Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "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": "101 Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "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, "tippecanoe:retain_points_multiplier_sequence": 481 }, "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": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3839 }, "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": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "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, "tippecanoe:retain_points_multiplier_sequence": 163 }, "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, "tippecanoe:retain_points_multiplier_sequence": 164 }, "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": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3864 }, "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": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4009 }, "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": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "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": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4016 }, "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, "tippecanoe:retain_points_multiplier_sequence": 482 }, "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": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "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, "tippecanoe:retain_points_multiplier_sequence": 166 }, "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": "3RD ST & 22ND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3880 }, "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": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4080 }, "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": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "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 & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 478 }, "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": "22nd St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4087 }, "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": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4091 }, "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, "tippecanoe:retain_points_multiplier_sequence": 167 }, "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": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "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": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4008 }, "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": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3870 }, "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": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4017 }, "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, "tippecanoe:retain_points_multiplier_sequence": 526 }, "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 & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "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": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "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": "Church St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "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": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "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 & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "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, "tippecanoe:retain_points_multiplier_sequence": 980 }, "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": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "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": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "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 & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2569 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2570 }, "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": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "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, "tippecanoe:retain_points_multiplier_sequence": 975 }, "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": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 976 }, "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, "tippecanoe:retain_points_multiplier_sequence": 511 }, "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 & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "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, "tippecanoe:retain_points_multiplier_sequence": 516 }, "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": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "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": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3617 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2572 }, "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 & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2573 }, "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": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2574 }, "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 & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "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": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 587 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3789 }, "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 & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 977 }, "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, "tippecanoe:retain_points_multiplier_sequence": 982 }, "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": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3790 }, "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 & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 586 }, "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": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3981 }, "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": "Church St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 979 }, "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": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3742 }, "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": "Church St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 978 }, "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": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "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": "46 Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "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 & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "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": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 717 }, "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, "tippecanoe:retain_points_multiplier_sequence": 959 }, "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": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "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": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "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": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3721 }, "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, "tippecanoe:retain_points_multiplier_sequence": 962 }, "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 & Miguel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 961 }, "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, "tippecanoe:retain_points_multiplier_sequence": 955 }, "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": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "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, "tippecanoe:retain_points_multiplier_sequence": 581 }, "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": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "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": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "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, "tippecanoe:retain_points_multiplier_sequence": 583 }, "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": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "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": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "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": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2434 }, "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, "tippecanoe:retain_points_multiplier_sequence": 582 }, "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": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "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, "tippecanoe:retain_points_multiplier_sequence": 964 }, "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 & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "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": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "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& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4224 }, "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 & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3090 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3088 }, "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 Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3091 }, "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& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4225 }, "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": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "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 & Appleton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2437 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "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": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2451 }, "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": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "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": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "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": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3616 }, "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, "tippecanoe:retain_points_multiplier_sequence": 529 }, "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": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "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": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "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, "tippecanoe:retain_points_multiplier_sequence": 521 }, "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": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "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": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3618 }, "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": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3619 }, "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": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "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": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2429 }, "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": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "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": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4174 }, "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": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "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": "South Van Ness Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4096 }, "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": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "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": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4168 }, "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": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "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 & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3620 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3622 }, "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": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3621 }, "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 St. & Valencia St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4133 }, "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": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4220 }, "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": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "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, "tippecanoe:retain_points_multiplier_sequence": 930 }, "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": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4109 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "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": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2460 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3626 }, "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": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3625 }, "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 & Power St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4301 }, "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 & Fair Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "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": "Mission St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2472 }, "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": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 931 }, "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": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1603 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1602 }, "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": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3976 }, "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": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "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": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1605 }, "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": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1606 }, "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": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3975 }, "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, "tippecanoe:retain_points_multiplier_sequence": 518 }, "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": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "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": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "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, "tippecanoe:retain_points_multiplier_sequence": 926 }, "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": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "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 St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4110 }, "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 & Cesar Chavz St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4221 }, "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 & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "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 & Bessie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1609 }, "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 & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1617 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1619 }, "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": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "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, "tippecanoe:retain_points_multiplier_sequence": 928 }, "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": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "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": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4223 }, "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 & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "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": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 925 }, "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": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2431 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "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 & Elsie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "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 & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "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": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3028 }, "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 & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3029 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "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": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3027 }, "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": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4126 }, "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": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "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 & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 716 }, "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": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "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 & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "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": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "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 & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3921 }, "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 & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3920 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "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 & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1620 }, "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": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1615 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "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": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "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": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "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 & Bradford St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "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": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3902 }, "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, "tippecanoe:retain_points_multiplier_sequence": 967 }, "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": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "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": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 728 }, "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": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3281 }, "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, "tippecanoe:retain_points_multiplier_sequence": 726 }, "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 & Milton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 725 }, "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": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 724 }, "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": "4080 Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2435 }, "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": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "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": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2440 }, "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": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2201 }, "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": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3030 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "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": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2471 }, "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": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3191 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2467 }, "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": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2466 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3193 }, "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": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3192 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3458 }, "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": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3459 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3188 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4066 }, "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 & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4069 }, "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": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3181 }, "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 & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2456 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "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": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2462 }, "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 & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "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 & College Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "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 & Leese St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "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": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3179 }, "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": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3180 }, "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": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3460 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3185 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3184 }, "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": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3892 }, "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": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "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": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 777 }, "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": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1514 }, "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": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 696 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2752 }, "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 & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2751 }, "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": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2344 }, "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": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2741 }, "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 & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2750 }, "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, "tippecanoe:retain_points_multiplier_sequence": 776 }, "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": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 775 }, "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": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "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": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2539 }, "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": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "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": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "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 & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "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": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 781 }, "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": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "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": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "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 & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "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": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2906 }, "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": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "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": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "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": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "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": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 694 }, "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, "tippecanoe:retain_points_multiplier_sequence": 708 }, "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 & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 707 }, "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": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 709 }, "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 & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1526 }, "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": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "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": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3929 }, "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": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2904 }, "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, "tippecanoe:retain_points_multiplier_sequence": 47 }, "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, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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 & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "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": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3025 }, "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 & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "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 & Arnold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "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 & Roscoe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "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": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "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": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 664 }, "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": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1510 }, "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": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "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 & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "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": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4194 }, "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": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "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": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "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": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3754 }, "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": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3176 }, "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 & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3177 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3195 }, "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": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3196 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4185 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3898 }, "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": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "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": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "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": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "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 & Ogden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "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": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "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": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "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": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4151 }, "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": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 660 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "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": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3183 }, "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": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3182 }, "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": "Felton St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1529 }, "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": "University St & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3543 }, "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 & Boylston St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3174 }, "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": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3186 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1525 }, "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 & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1524 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "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 & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1523 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "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": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2218 }, "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 & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2219 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3541 }, "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 & Burrows St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3542 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3539 }, "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 & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3540 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3545 }, "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": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3546 }, "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 & Colby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3713 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3715 }, "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": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3716 }, "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": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3544 }, "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 & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3720 }, "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": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3714 }, "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 & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2224 }, "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 & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2225 }, "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": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "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, "tippecanoe:retain_points_multiplier_sequence": 763 }, "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": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 764 }, "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": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "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": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "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": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "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 & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "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, "tippecanoe:retain_points_multiplier_sequence": 767 }, "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": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 768 }, "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": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "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": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2865 }, "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": "24th Street & Potrero Avenue", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4086 }, "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": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "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": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "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": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4222 }, "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": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 924 }, "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": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 785 }, "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": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2099 }, "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": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "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": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "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": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3018 }, "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 & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "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, "tippecanoe:retain_points_multiplier_sequence": 559 }, "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": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 560 }, "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, "tippecanoe:retain_points_multiplier_sequence": 793 }, "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": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3843 }, "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 & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 734 }, "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, "tippecanoe:retain_points_multiplier_sequence": 733 }, "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": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "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, "tippecanoe:retain_points_multiplier_sequence": 795 }, "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": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "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": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3761 }, "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": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "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": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "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": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "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": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3977 }, "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 & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "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 & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 791 }, "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": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 794 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1968 }, "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": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1969 }, "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 & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3762 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "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": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2609 }, "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 & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3442 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3439 }, "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 & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3438 }, "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 & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3441 }, "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": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3440 }, "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 & Elmira St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "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 & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1972 }, "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": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1971 }, "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": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2702 }, "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": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3198 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3701 }, "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": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3700 }, "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, "tippecanoe:retain_points_multiplier_sequence": 555 }, "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": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "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": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3702 }, "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": "Connecticut St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "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, "tippecanoe:retain_points_multiplier_sequence": 548 }, "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": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 549 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "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": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "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": "26th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1493 }, "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": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "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": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "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": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "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 St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "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": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4089 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1500 }, "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 & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3953 }, "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": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4088 }, "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": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4090 }, "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 & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "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": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2053 }, "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 & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2054 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2051 }, "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": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "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": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2718 }, "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": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3197 }, "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": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "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": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3194 }, "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 & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2716 }, "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": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "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 & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2774 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2772 }, "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": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2773 }, "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": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1504 }, "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": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3952 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2049 }, "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": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1503 }, "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": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1502 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4019 }, "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": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4006 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3866 }, "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": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "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": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1491 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3871 }, "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 & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "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": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "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": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2048 }, "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 & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "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": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4027 }, "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 & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4025 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4028 }, "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": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4024 }, "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": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2352 }, "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 & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "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, "tippecanoe:retain_points_multiplier_sequence": 190 }, "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": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4044 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4005 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4054 }, "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": "Hudson Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1917 }, "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": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "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 & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4243 }, "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": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4244 }, "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": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "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": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4026 }, "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": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4045 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4004 }, "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": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4053 }, "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 & Boutwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "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": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 788 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3200 }, "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": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3199 }, "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": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3154 }, "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": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3178 }, "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, "tippecanoe:retain_points_multiplier_sequence": 797 }, "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, "tippecanoe:retain_points_multiplier_sequence": 799 }, "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": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 798 }, "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": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3175 }, "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": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3153 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3190 }, "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": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3189 }, "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 & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3148 }, "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": "San Bruno Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3155 }, "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": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4281 }, "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": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4298 }, "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, "tippecanoe:retain_points_multiplier_sequence": 711 }, "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": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "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 & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3173 }, "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 & Ledyard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3187 }, "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&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3955 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3202 }, "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": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3201 }, "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": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 738 }, "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": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4232 }, "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": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "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": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 790 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3143 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3144 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3146 }, "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": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3145 }, "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, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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 & Donner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "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": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2768 }, "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": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3595 }, "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 & Williams Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2775 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "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": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1902 }, "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": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1903 }, "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, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "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": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1905 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3711 }, "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 & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3712 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3719 }, "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": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3718 }, "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 & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1906 }, "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": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1904 }, "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": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3717 }, "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, "tippecanoe:retain_points_multiplier_sequence": 713 }, "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": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 712 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "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 & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "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 & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2213 }, "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 & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2214 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "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 & Somerset St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2222 }, "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 & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3161 }, "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 & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3160 }, "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 & Dwight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3147 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3151 }, "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": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "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": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2739 }, "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": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4252 }, "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 & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2734 }, "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 & Wheat St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "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": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "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 & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2209 }, "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": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2212 }, "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": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3150 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "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": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "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": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3149 }, "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": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4251 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3156 }, "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": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3157 }, "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": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3454 }, "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": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "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 & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3457 }, "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 & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3455 }, "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": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3456 }, "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 & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3002 }, "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": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3003 }, "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": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3710 }, "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": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4228 }, "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": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "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": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "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": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "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": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3765 }, "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": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3764 }, "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": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4046 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4052 }, "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": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4003 }, "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 & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "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, "tippecanoe:retain_points_multiplier_sequence": 199 }, "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": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "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": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2698 }, "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": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3868 }, "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": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2699 }, "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": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4047 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4002 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4051 }, "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": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3064 }, "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": "3rd St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "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": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3065 }, "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": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "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": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3763 }, "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": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2711 }, "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": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3070 }, "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": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4029 }, "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": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3069 }, "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": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4023 }, "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": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "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 & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "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": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3708 }, "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": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3709 }, "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": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3872 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4000 }, "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": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3999 }, "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 & Van Dyke Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "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": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "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": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3594 }, "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": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3592 }, "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": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3593 }, "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": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2737 }, "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": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4059 }, "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, "tippecanoe:retain_points_multiplier_sequence": 174 }, "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": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3968 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3997 }, "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": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3998 }, "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 & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "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, "tippecanoe:retain_points_multiplier_sequence": 178 }, "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 & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "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": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3984 }, "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": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2738 }, "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": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4253 }, "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": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2735 }, "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 & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "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": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4048 }, "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 Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3995 }, "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 St & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4030 }, "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": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4050 }, "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": "3rd St & Key St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "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": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3867 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3996 }, "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": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4001 }, "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": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "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": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1700 }, "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": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4254 }, "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": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4060 }, "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 & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1573 }, "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": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1572 }, "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": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1703 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3591 }, "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": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3590 }, "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": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1571 }, "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": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1702 }, "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": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1570 }, "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": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4094 }, "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": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4100 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4095 }, "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, "tippecanoe:retain_points_multiplier_sequence": 33 }, "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, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "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": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "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": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4071 }, "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": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "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 St & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4032 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4018 }, "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 Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4007 }, "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": "Third St & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4031 }, "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 & ARTHUR AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3881 }, "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": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "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": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "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": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4067 }, "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": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1498 }, "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 & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2368 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2370 }, "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": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2369 }, "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": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4155 }, "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 & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "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/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2372 }, "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": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3795 }, "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": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "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": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "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": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 917 }, "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 & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1501 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1506 }, "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/US Post Office", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3896 }, "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": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1507 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1922 }, "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": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1923 }, "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": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1517 }, "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": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "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": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "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": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1494 }, "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 & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4200 }, "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": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "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": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1496 }, "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": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2363 }, "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": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2708 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2709 }, "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": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2707 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "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": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2104 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2348 }, "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 & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2349 }, "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": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "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": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1919 }, "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": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 915 }, "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": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1918 }, "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": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2350 }, "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": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2160 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3722 }, "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": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3723 }, "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": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3068 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2706 }, "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": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2705 }, "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": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3067 }, "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": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "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": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "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": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2613 }, "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": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "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": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1986 }, "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": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "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 & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "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": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2362 }, "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": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1927 }, "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": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1983 }, "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": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "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": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1921 }, "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 & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2365 }, "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": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3878 }, "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": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "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": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1979 }, "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": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "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 & Osceola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "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": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "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": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1982 }, "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": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "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 & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "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": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2700 }, "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": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2113 }, "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": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2603 }, "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": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "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": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2612 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "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 & Van Dyke Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1989 }, "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": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "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 & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1977 }, "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": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1976 }, "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": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "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": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2602 }, "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 & Fitch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1975 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1974 }, "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": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1973 }, "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": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "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": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "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": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "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 ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3855 }, "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": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3248 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "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": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2997 }, "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": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "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": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3850 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2005 }, "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": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2003 }, "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": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2004 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "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": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2002 }, "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 & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1733 }, "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 & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "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": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 671 }, "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": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "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": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4262 }, "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": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2041 }, "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": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1627 }, "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": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3796 }, "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": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3923 }, "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": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1707 }, "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": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "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": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1708 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "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": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "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, "tippecanoe:retain_points_multiplier_sequence": 413 }, "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": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "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": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "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": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "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 & Cambon Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1624 }, "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": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3741 }, "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 & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "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": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2795 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2794 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "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 & Thrift St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2804 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "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 & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2799 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3078 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3824 }, "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 & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3079 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3828 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3077 }, "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 & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3829 }, "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": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2356 }, "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, "tippecanoe:retain_points_multiplier_sequence": 662 }, "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": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 663 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "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": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1780 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2449 }, "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": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2450 }, "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": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1779 }, "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": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4182 }, "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": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "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": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "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 & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2346 }, "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": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "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": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2541 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3060 }, "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": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3059 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2908 }, "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": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "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": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3926 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2744 }, "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": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2743 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "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": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2217 }, "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": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3779 }, "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": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3752 }, "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": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3685 }, "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": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "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 & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3776 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3777 }, "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": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3840 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3783 }, "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": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3782 }, "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": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3682 }, "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": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3683 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3689 }, "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 & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3688 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3686 }, "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": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3687 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3158 }, "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": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3159 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3684 }, "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": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3781 }, "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 & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1992 }, "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": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1991 }, "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 & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1701 }, "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 & Bill Walsh Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "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": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3994 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3731 }, "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 Castro Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2564 }, "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 Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3734 }, "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 Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2567 }, "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/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2565 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3906 }, "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 Embarcadero Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3732 }, "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": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3874 }, "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": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3736 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3907 }, "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", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "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 Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3905 }, "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/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3737 }, "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 Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2563 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3738 }, "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 Church Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2562 }, "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/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3735 }, "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": "Feature", "properties": { "name": "Metro Powell Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2288 }, "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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 index 005cb994a..6a53769c2 100644 --- 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 @@ -16,293 +16,293 @@ }, "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, "tippecanoe:retain_points_multiplier_sequence": 80 }, "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, "tippecanoe:retain_points_multiplier_sequence": 51 }, "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, "tippecanoe:retain_points_multiplier_sequence": 20 }, "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, "tippecanoe:retain_points_multiplier_sequence": 50 }, "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, "tippecanoe:retain_points_multiplier_sequence": 136 }, "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, "tippecanoe:retain_points_multiplier_sequence": 13 }, "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, "tippecanoe:retain_points_multiplier_sequence": 53 }, "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, "tippecanoe:retain_points_multiplier_sequence": 92 }, "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, "tippecanoe:retain_points_multiplier_sequence": 29 }, "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, "tippecanoe:retain_points_multiplier_sequence": 99 }, "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, "tippecanoe:retain_points_multiplier_sequence": 30 }, "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, "tippecanoe:retain_points_multiplier_sequence": 35 }, "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, "tippecanoe:retain_points_multiplier_sequence": 28 }, "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, "tippecanoe:retain_points_multiplier_sequence": 128 }, "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, "tippecanoe:retain_points_multiplier_sequence": 138 }, "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, "tippecanoe:retain_points_multiplier_sequence": 17 }, "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, "tippecanoe:retain_points_multiplier_sequence": 52 }, "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, "tippecanoe:retain_points_multiplier_sequence": 119 }, "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, "tippecanoe:retain_points_multiplier_sequence": 61 }, "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, "tippecanoe:retain_points_multiplier_sequence": 58 }, "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, "tippecanoe:retain_points_multiplier_sequence": 105 }, "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, "tippecanoe:retain_points_multiplier_sequence": 38 }, "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, "tippecanoe:retain_points_multiplier_sequence": 34 }, "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, "tippecanoe:retain_points_multiplier_sequence": 78 }, "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, "tippecanoe:retain_points_multiplier_sequence": 110 }, "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, "tippecanoe:retain_points_multiplier_sequence": 114 }, "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, "tippecanoe:retain_points_multiplier_sequence": 86 }, "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, "tippecanoe:retain_points_multiplier_sequence": 82 }, "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, "tippecanoe:retain_points_multiplier_sequence": 10 }, "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, "tippecanoe:retain_points_multiplier_sequence": 47 }, "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, "tippecanoe:retain_points_multiplier_sequence": 115 }, "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, "tippecanoe:retain_points_multiplier_sequence": 24 }, "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, "tippecanoe:retain_points_multiplier_sequence": 72 }, "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, "tippecanoe:retain_points_multiplier_sequence": 100 }, "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, "tippecanoe:retain_points_multiplier_sequence": 22 }, "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, "tippecanoe:retain_points_multiplier_sequence": 3 }, "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, "tippecanoe:retain_points_multiplier_sequence": 16 }, "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, "tippecanoe:retain_points_multiplier_sequence": 106 }, "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, "tippecanoe:retain_points_multiplier_sequence": 135 }, "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, "tippecanoe:retain_points_multiplier_sequence": 94 }, "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, "tippecanoe:retain_points_multiplier_sequence": 41 }, "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, "tippecanoe:retain_points_multiplier_sequence": 44 }, "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, "tippecanoe:retain_points_multiplier_sequence": 93 }, "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, "tippecanoe:retain_points_multiplier_sequence": 33 }, "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, "tippecanoe:retain_points_multiplier_sequence": 32 }, "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, "tippecanoe:retain_points_multiplier_sequence": 8 }, "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, "tippecanoe:retain_points_multiplier_sequence": 42 }, "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, "tippecanoe:retain_points_multiplier_sequence": 21 }, "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, "tippecanoe:retain_points_multiplier_sequence": 31 }, "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, "tippecanoe:retain_points_multiplier_sequence": 103 }, "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, "tippecanoe:retain_points_multiplier_sequence": 6 }, "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, "tippecanoe:retain_points_multiplier_sequence": 121 }, "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, "tippecanoe:retain_points_multiplier_sequence": 62 }, "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, "tippecanoe:retain_points_multiplier_sequence": 54 }, "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, "tippecanoe:retain_points_multiplier_sequence": 120 }, "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, "tippecanoe:retain_points_multiplier_sequence": 108 }, "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, "tippecanoe:retain_points_multiplier_sequence": 55 }, "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, "tippecanoe:retain_points_multiplier_sequence": 14 }, "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, "tippecanoe:retain_points_multiplier_sequence": 70 }, "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, "tippecanoe:retain_points_multiplier_sequence": 122 }, "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, "tippecanoe:retain_points_multiplier_sequence": 77 }, "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, "tippecanoe:retain_points_multiplier_sequence": 39 }, "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, "tippecanoe:retain_points_multiplier_sequence": 76 }, "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, "tippecanoe:retain_points_multiplier_sequence": 15 }, "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, "tippecanoe:retain_points_multiplier_sequence": 118 }, "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, "tippecanoe:retain_points_multiplier_sequence": 134 }, "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, "tippecanoe:retain_points_multiplier_sequence": 129 }, "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, "tippecanoe:retain_points_multiplier_sequence": 81 }, "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, "tippecanoe:retain_points_multiplier_sequence": 90 }, "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, "tippecanoe:retain_points_multiplier_sequence": 46 }, "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, "tippecanoe:retain_points_multiplier_sequence": 9 }, "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, "tippecanoe:retain_points_multiplier_sequence": 91 }, "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, "tippecanoe:retain_points_multiplier_sequence": 48 }, "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, "tippecanoe:retain_points_multiplier_sequence": 25 }, "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, "tippecanoe:retain_points_multiplier_sequence": 124 }, "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, "tippecanoe:retain_points_multiplier_sequence": 26 }, "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, "tippecanoe:retain_points_multiplier_sequence": 12 }, "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, "tippecanoe:retain_points_multiplier_sequence": 49 }, "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, "tippecanoe:retain_points_multiplier_sequence": 73 }, "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, "tippecanoe:retain_points_multiplier_sequence": 130 }, "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, "tippecanoe:retain_points_multiplier_sequence": 36 }, "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, "tippecanoe:retain_points_multiplier_sequence": 63 }, "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, "tippecanoe:retain_points_multiplier_sequence": 123 }, "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, "tippecanoe:retain_points_multiplier_sequence": 19 }, "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, "tippecanoe:retain_points_multiplier_sequence": 113 }, "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, "tippecanoe:retain_points_multiplier_sequence": 112 }, "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, "tippecanoe:retain_points_multiplier_sequence": 37 }, "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, "tippecanoe:retain_points_multiplier_sequence": 40 }, "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, "tippecanoe:retain_points_multiplier_sequence": 66 }, "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, "tippecanoe:retain_points_multiplier_sequence": 116 }, "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, "tippecanoe:retain_points_multiplier_sequence": 117 }, "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, "tippecanoe:retain_points_multiplier_sequence": 65 }, "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, "tippecanoe:retain_points_multiplier_sequence": 109 }, "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, "tippecanoe:retain_points_multiplier_sequence": 67 }, "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, "tippecanoe:retain_points_multiplier_sequence": 45 }, "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, "tippecanoe:retain_points_multiplier_sequence": 7 }, "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, "tippecanoe:retain_points_multiplier_sequence": 60 }, "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, "tippecanoe:retain_points_multiplier_sequence": 107 }, "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, "tippecanoe:retain_points_multiplier_sequence": 2 }, "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, "tippecanoe:retain_points_multiplier_sequence": 111 }, "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, "tippecanoe:retain_points_multiplier_sequence": 127 }, "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, "tippecanoe:retain_points_multiplier_sequence": 0 }, "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, "tippecanoe:retain_points_multiplier_sequence": 59 }, "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, "tippecanoe:retain_points_multiplier_sequence": 140 }, "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, "tippecanoe:retain_points_multiplier_sequence": 97 }, "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, "tippecanoe:retain_points_multiplier_sequence": 137 }, "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, "tippecanoe:retain_points_multiplier_sequence": 126 }, "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, "tippecanoe:retain_points_multiplier_sequence": 98 }, "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, "tippecanoe:retain_points_multiplier_sequence": 95 }, "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, "tippecanoe:retain_points_multiplier_sequence": 74 }, "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, "tippecanoe:retain_points_multiplier_sequence": 84 }, "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, "tippecanoe:retain_points_multiplier_sequence": 57 }, "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, "tippecanoe:retain_points_multiplier_sequence": 11 }, "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, "tippecanoe:retain_points_multiplier_sequence": 139 }, "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, "tippecanoe:retain_points_multiplier_sequence": 83 }, "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, "tippecanoe:retain_points_multiplier_sequence": 125 }, "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, "tippecanoe:retain_points_multiplier_sequence": 71 }, "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, "tippecanoe:retain_points_multiplier_sequence": 23 }, "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, "tippecanoe:retain_points_multiplier_sequence": 68 }, "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, "tippecanoe:retain_points_multiplier_sequence": 88 }, "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, "tippecanoe:retain_points_multiplier_sequence": 131 }, "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, "tippecanoe:retain_points_multiplier_sequence": 104 }, "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, "tippecanoe:retain_points_multiplier_sequence": 69 }, "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, "tippecanoe:retain_points_multiplier_sequence": 101 }, "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, "tippecanoe:retain_points_multiplier_sequence": 64 }, "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, "tippecanoe:retain_points_multiplier_sequence": 43 }, "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, "tippecanoe:retain_points_multiplier_sequence": 27 }, "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, "tippecanoe:retain_points_multiplier_sequence": 1 }, "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, "tippecanoe:retain_points_multiplier_sequence": 133 }, "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, "tippecanoe:retain_points_multiplier_sequence": 132 }, "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, "tippecanoe:retain_points_multiplier_sequence": 89 }, "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, "tippecanoe:retain_points_multiplier_sequence": 142 }, "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, "tippecanoe:retain_points_multiplier_sequence": 85 }, "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, "tippecanoe:retain_points_multiplier_sequence": 87 }, "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, "tippecanoe:retain_points_multiplier_sequence": 18 }, "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, "tippecanoe:retain_points_multiplier_sequence": 143 }, "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, "tippecanoe:retain_points_multiplier_sequence": 75 }, "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, "tippecanoe:retain_points_multiplier_sequence": 141 }, "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, "tippecanoe:retain_points_multiplier_sequence": 79 }, "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, "tippecanoe:retain_points_multiplier_sequence": 56 }, "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, "tippecanoe:retain_points_multiplier_sequence": 5 }, "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, "tippecanoe:retain_points_multiplier_sequence": 102 }, "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, "tippecanoe:retain_points_multiplier_sequence": 96 }, "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 ] ] ] ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "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_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--order-by_NAME.json b/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--order-by_NAME.json new file mode 100644 index 000000000..32a06fda7 --- /dev/null +++ b/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--order-by_NAME.json @@ -0,0 +1,206 @@ +{ "type": "FeatureCollection", "properties": { +"antimeridian_adjusted_bounds": "-175.220564,-41.299973,179.216647,64.150023", +"bounds": "-175.220564,-41.299973,179.216647,64.150023", +"center": "0.000000,0.000000,0", +"description": "tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--order-by_NAME.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--order-by_NAME.json.check.mbtiles -z0 -r2 -B3 -yNAME --retain-points-multiplier 3 --order-by NAME tests/ne_110m_populated_places/in.json", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":0,\"fields\":{\"NAME\":\"String\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":243,\"geometry\":\"Point\",\"attributeCount\":1,\"attributes\":[{\"attribute\":\"NAME\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]}]}]}}", +"maxzoom": "0", +"minzoom": "0", +"name": "tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--order-by_NAME.json.check.mbtiles", +"strategies": "[{\"dropped_by_rate\":150}]", +"tippecanoe_decisions": "{\"basezoom\":3,\"droprate\":2,\"retain_points_multiplier\":3}", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "NAME": "Andorra", "tippecanoe:retain_points_multiplier_sequence": 4, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 1.494141, 42.488302 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Luxembourg", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 49.610710 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Paris", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ 2.373047, 48.864715 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Astana", "tippecanoe:retain_points_multiplier_sequence": 41, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 71.455078, 51.179343 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bishkek", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 74.619141, 42.875964 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tashkent", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ 69.257812, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Auckland", "tippecanoe:retain_points_multiplier_sequence": 71, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.726562, -36.879621 ], [ -185.273438, -36.879621 ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Funafuti", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 179.208984, -8.494105 ], [ -180.791016, -8.494105 ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Suva", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 178.417969, -18.145852 ], [ -181.582031, -18.145852 ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bangkok", "tippecanoe:retain_points_multiplier_sequence": 68, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 100.546875, 13.752725 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hanoi", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ 105.820312, 21.043491 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vientiane", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ 102.568359, 17.978733 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Beirut", "tippecanoe:retain_points_multiplier_sequence": 40, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cairo", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ 31.289062, 30.069094 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ 34.804688, 32.101190 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Belmopan", "tippecanoe:retain_points_multiplier_sequence": 44, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.224758 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nassau", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Berlin", "tippecanoe:retain_points_multiplier_sequence": 72, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 13.359375, 52.536273 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Prague", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 50.064192 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Warsaw", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.268157 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bir Lehlou", "tippecanoe:retain_points_multiplier_sequence": 3, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -9.667969, 26.115986 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dakar", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -17.490234, 14.689881 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nouakchott", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -15.996094, 18.062312 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bratislava", "tippecanoe:retain_points_multiplier_sequence": 7, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 17.138672, 48.166085 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Budapest", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Rome", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bridgetown", "tippecanoe:retain_points_multiplier_sequence": 13, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -59.589844, 13.068777 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kingstown", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -61.171875, 13.154376 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Saint George's", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -61.699219, 12.039321 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bucharest", "tippecanoe:retain_points_multiplier_sequence": 53, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.465151 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Chisinau", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Istanbul", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Chicago", "tippecanoe:retain_points_multiplier_sequence": 65, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -87.714844, 41.836828 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Guatemala", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Toronto", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -79.453125, 43.707594 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Colombo", "tippecanoe:retain_points_multiplier_sequence": 27, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 79.892578, 6.926427 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Male", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ 73.476562, 4.127285 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 79.980469, 6.926427 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dar es Salaam", "tippecanoe:retain_points_multiplier_sequence": 56, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 39.287109, -6.839170 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dodoma", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 35.771484, -6.140555 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nairobi", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.318243 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dili", "tippecanoe:retain_points_multiplier_sequence": 19, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Jakarta", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ 106.787109, -6.140555 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Port Moresby", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 147.216797, -9.449062 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Doha", "tippecanoe:retain_points_multiplier_sequence": 8, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 51.503906, 25.324167 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dubai", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.244696 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Manama", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 50.625000, 26.273714 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dublin", "tippecanoe:retain_points_multiplier_sequence": 57, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } +, +{ "type": "Feature", "properties": { "NAME": "London", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -0.087891, 51.508742 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Praia", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -23.554688, 14.944785 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Helsinki", "tippecanoe:retain_points_multiplier_sequence": 62, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 24.960938, 60.196156 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Skopje", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 21.445312, 41.967659 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tallinn", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 24.697266, 59.445075 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hong Kong", "tippecanoe:retain_points_multiplier_sequence": 92, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 114.169922, 22.268764 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Shanghai", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ 121.464844, 31.203405 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Taipei", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.005973 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Islamabad", "tippecanoe:retain_points_multiplier_sequence": 23, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 73.125000, 33.724340 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kabul", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ 69.169922, 34.524661 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New Delhi", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ 77.167969, 28.613459 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Juba", "tippecanoe:retain_points_multiplier_sequence": 6, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kampala", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 32.607422, 0.351560 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Khartoum", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ 32.519531, 15.623037 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kingston", "tippecanoe:retain_points_multiplier_sequence": 31, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -76.728516, 17.978733 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Port-au-Prince", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.562947 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Santo Domingo", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -69.873047, 18.479609 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kinshasa", "tippecanoe:retain_points_multiplier_sequence": 74, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Luanda", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ 13.271484, -8.841651 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Windhoek", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ 17.050781, -22.593726 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kyoto", "tippecanoe:retain_points_multiplier_sequence": 11, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 135.791016, 35.029996 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Melekeok", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 134.648438, 7.449624 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Osaka", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } +, +{ "type": "Feature", "properties": { "NAME": "La Paz", "tippecanoe:retain_points_multiplier_sequence": 45, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -68.115234, -16.467695 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lima", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -77.080078, -12.039321 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Valparaiso", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.063924 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Libreville", "tippecanoe:retain_points_multiplier_sequence": 36, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 9.492188, 0.351560 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Malabo", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ndjamena", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 15.029297, 12.125264 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lome", "tippecanoe:retain_points_multiplier_sequence": 18, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Niamey", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.496473 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Valletta", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Los Angeles", "tippecanoe:retain_points_multiplier_sequence": 80, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "NAME": "San Francisco", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vancouver", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Maseru", "tippecanoe:retain_points_multiplier_sequence": 30, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 27.509766, -29.305561 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mbabane", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.352498 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Pretoria", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 28.212891, -25.720735 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Monrovia", "tippecanoe:retain_points_multiplier_sequence": 58, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ouagadougou", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -1.494141, 12.382928 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Yamoussoukro", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.839170 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Montevideo", "tippecanoe:retain_points_multiplier_sequence": 17, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.885931 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Rio de Janeiro", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -43.242188, -22.917923 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sao Paulo", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -46.669922, -23.563987 ] } } +] } +] } +] } diff --git a/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--preserve-input-order.json b/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--preserve-input-order.json new file mode 100644 index 000000000..d06a65d1e --- /dev/null +++ b/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--preserve-input-order.json @@ -0,0 +1,206 @@ +{ "type": "FeatureCollection", "properties": { +"antimeridian_adjusted_bounds": "-175.220564,-41.299973,179.216647,64.150023", +"bounds": "-175.220564,-41.299973,179.216647,64.150023", +"center": "0.000000,0.000000,0", +"description": "tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--preserve-input-order.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--preserve-input-order.json.check.mbtiles -z0 -r2 -B3 -yNAME --retain-points-multiplier 3 --preserve-input-order tests/ne_110m_populated_places/in.json", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":0,\"fields\":{\"NAME\":\"String\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":243,\"geometry\":\"Point\",\"attributeCount\":1,\"attributes\":[{\"attribute\":\"NAME\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]}]}]}}", +"maxzoom": "0", +"minzoom": "0", +"name": "tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--preserve-input-order.json.check.mbtiles", +"strategies": "[{\"dropped_by_rate\":150}]", +"tippecanoe_decisions": "{\"basezoom\":3,\"droprate\":2,\"retain_points_multiplier\":3}", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "NAME": "Bir Lehlou", "tippecanoe:retain_points_multiplier_sequence": 3, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -9.667969, 26.115986 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dakar", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -17.490234, 14.689881 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nouakchott", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -15.996094, 18.062312 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Andorra", "tippecanoe:retain_points_multiplier_sequence": 4, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 1.494141, 42.488302 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Luxembourg", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 49.610710 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Paris", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ 2.373047, 48.864715 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Juba", "tippecanoe:retain_points_multiplier_sequence": 6, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kampala", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 32.607422, 0.351560 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Khartoum", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ 32.519531, 15.623037 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bratislava", "tippecanoe:retain_points_multiplier_sequence": 7, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 17.138672, 48.166085 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Budapest", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Rome", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Doha", "tippecanoe:retain_points_multiplier_sequence": 8, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 51.503906, 25.324167 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dubai", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.244696 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Manama", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 50.625000, 26.273714 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kyoto", "tippecanoe:retain_points_multiplier_sequence": 11, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 135.791016, 35.029996 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Melekeok", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 134.648438, 7.449624 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Osaka", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bridgetown", "tippecanoe:retain_points_multiplier_sequence": 13, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -59.589844, 13.068777 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kingstown", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -61.171875, 13.154376 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Saint George's", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -61.699219, 12.039321 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Montevideo", "tippecanoe:retain_points_multiplier_sequence": 17, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.885931 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Rio de Janeiro", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -43.242188, -22.917923 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sao Paulo", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -46.669922, -23.563987 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lome", "tippecanoe:retain_points_multiplier_sequence": 18, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Niamey", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.496473 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Valletta", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dili", "tippecanoe:retain_points_multiplier_sequence": 19, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Jakarta", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ 106.787109, -6.140555 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Port Moresby", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 147.216797, -9.449062 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Islamabad", "tippecanoe:retain_points_multiplier_sequence": 23, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 73.125000, 33.724340 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kabul", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ 69.169922, 34.524661 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New Delhi", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ 77.167969, 28.613459 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Colombo", "tippecanoe:retain_points_multiplier_sequence": 27, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 79.892578, 6.926427 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Male", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ 73.476562, 4.127285 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 79.980469, 6.926427 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Maseru", "tippecanoe:retain_points_multiplier_sequence": 30, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 27.509766, -29.305561 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mbabane", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.352498 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Pretoria", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 28.212891, -25.720735 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kingston", "tippecanoe:retain_points_multiplier_sequence": 31, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -76.728516, 17.978733 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Port-au-Prince", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.562947 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Santo Domingo", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -69.873047, 18.479609 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Libreville", "tippecanoe:retain_points_multiplier_sequence": 36, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 9.492188, 0.351560 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Malabo", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ndjamena", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 15.029297, 12.125264 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Beirut", "tippecanoe:retain_points_multiplier_sequence": 40, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cairo", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ 31.289062, 30.069094 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ 34.804688, 32.101190 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Astana", "tippecanoe:retain_points_multiplier_sequence": 41, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 71.455078, 51.179343 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bishkek", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 74.619141, 42.875964 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tashkent", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ 69.257812, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Belmopan", "tippecanoe:retain_points_multiplier_sequence": 44, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.224758 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nassau", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } +, +{ "type": "Feature", "properties": { "NAME": "La Paz", "tippecanoe:retain_points_multiplier_sequence": 45, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -68.115234, -16.467695 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lima", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -77.080078, -12.039321 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Valparaiso", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.063924 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bucharest", "tippecanoe:retain_points_multiplier_sequence": 53, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.465151 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Chisinau", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Istanbul", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dar es Salaam", "tippecanoe:retain_points_multiplier_sequence": 56, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 39.287109, -6.839170 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dodoma", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 35.771484, -6.140555 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nairobi", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.318243 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dublin", "tippecanoe:retain_points_multiplier_sequence": 57, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } +, +{ "type": "Feature", "properties": { "NAME": "London", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -0.087891, 51.508742 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Praia", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -23.554688, 14.944785 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Monrovia", "tippecanoe:retain_points_multiplier_sequence": 58, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ouagadougou", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -1.494141, 12.382928 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Yamoussoukro", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.839170 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Helsinki", "tippecanoe:retain_points_multiplier_sequence": 62, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 24.960938, 60.196156 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Skopje", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 21.445312, 41.967659 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tallinn", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 24.697266, 59.445075 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Chicago", "tippecanoe:retain_points_multiplier_sequence": 65, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -87.714844, 41.836828 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Guatemala", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Toronto", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -79.453125, 43.707594 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bangkok", "tippecanoe:retain_points_multiplier_sequence": 68, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 100.546875, 13.752725 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hanoi", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ 105.820312, 21.043491 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vientiane", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ 102.568359, 17.978733 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Auckland", "tippecanoe:retain_points_multiplier_sequence": 71, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.726562, -36.879621 ], [ -185.273438, -36.879621 ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Funafuti", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 179.208984, -8.494105 ], [ -180.791016, -8.494105 ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Suva", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 178.417969, -18.145852 ], [ -181.582031, -18.145852 ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Berlin", "tippecanoe:retain_points_multiplier_sequence": 72, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 13.359375, 52.536273 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Prague", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 50.064192 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Warsaw", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.268157 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kinshasa", "tippecanoe:retain_points_multiplier_sequence": 74, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Luanda", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ 13.271484, -8.841651 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Windhoek", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ 17.050781, -22.593726 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Los Angeles", "tippecanoe:retain_points_multiplier_sequence": 80, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "NAME": "San Francisco", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vancouver", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hong Kong", "tippecanoe:retain_points_multiplier_sequence": 92, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 114.169922, 22.268764 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Shanghai", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ 121.464844, 31.203405 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Taipei", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.005973 ] } } +] } +] } +] } diff --git a/tests/pbf/0-0-0-filter-mult-order.pbf.json b/tests/pbf/0-0-0-filter-mult-order.pbf.json new file mode 100644 index 000000000..d329749f6 --- /dev/null +++ b/tests/pbf/0-0-0-filter-mult-order.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": { "SCALERANK": 4, "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.496473 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NAME": "Wellington" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.814453, -41.310824 ], [ -185.273438, -41.310824 ] ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.214844, -19.062118 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.121094, 9.535749 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.062500, 30.675715 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.347656, 48.166085 ] } } +, +{ "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.pbf b/tests/pbf/0-0-0-pop.pbf index 5ee6c84a1df407733258c3aa356bfbdb06c75c40..737c8d7cb349f877fd14bddb3ffa267a534bff2a 100644 GIT binary patch delta 75372 zcmV)ZK&!vC$OQk*1dvZ2pYuM+IqB#7xvu}u>oU*l+&RyE)_vb+JWueP`nIuc>;Zqb z|Cg+G!*GYel4bC$0e>XUSA%*Rg=)kb$r$1bGAv#nc~nmHs_IciuEb{~KBMp%jZYOm z)%Z-nrxu@jd?w>Foqk5h@fm?nXp4Zh2xyCdwul&f#^N&$pBj8Za|AR;=5(RBh&=Z9`(WrkkdMO&Mh=#Uk=!r(oXw*46 z37_mP=!`~hM5E3zs9_9p#vo4&^2DHZvCtd~&9Uf>Smca_&RFD+MQvkoR~&!JjYCW0 zU=Q)QHy&+_N8RGlqIl$thqic@6WZcYw|MlD3T;%OjVkn*3iql|XBG0RP`V1Gt59bZ zMnr|ysi8rQd(~)*8ud}5K5EoQ4Q*<)PK{crQ7bj{tD#v9&1z^?qlW4M_++J^wi=YB zfqo72YfxJaG;7c&8nje{{0V<3D-m}k;;uy8m55p;qE?BxHxYG6M7fD5F$s5Rp;L<< z(4vM~(58nrJ!-3mwq(>f8QPLjZZgVB#jPn955wS72sF+Zdj!Od5qGh*hBiM!M)U!(} zzEhBhiVK8f!N4vmc42?Q*c4pUD1pp?>=Ml`EN24Rr$}TuwP=bW8O18n5^-V8R7NJ_ z5{E2GH7cRh#N)!WDAOT~R3K+02`co$bVlkD*#%t}sYlzRVo}d1rZb8)I!Xs+(Q;HG zIs%m^b22V5$P&%&i&nEN8s{Ym7p;O_(AsD{QHUNW3*^=j2@-OBtvJc zl3iGqSgnd(m{5xnVs%WYL(O9Ks8XC91;r&m7?+3};^i3BcxDsv(JU2%obj>98Lz?Z z@$A0%1eivADtbvJN265{8g|jL3!0)*;67C>21gaoQaW~n9s{6C9)L>Uea4S{2JKsFIr5l3EkVF6{OMG)%2!S(uZkQ`voKNNHI2 zXd-dDCK{z{Vlh-26$;X@F3=>RbWJ)g32L-GQ6A4OEXA}WvU(<};M$3-E{V*p6PcDo zExV7^EK!TDOOhj{O+YVcS#`C{t90@hcENW#W(+zue!72Xn6Qq83!N&GUC?zp)-O6% zx{mpSj=8T+hxY08?Dk}qGbNr~nCeufEEOH8OH;55a_SYhUC)A*o_T;i4!7&$QIKAR zHs}+eOs{7-nL+DWdHQ73Q=iI&%u|!uI3&j-OET-8WE~Txqw*=Nvr-i7!g?Y_gJM%y z986^nn-+hGOFD~7>C89NNyDmpRFxYgGp+?DiC!b5Jd^Y4z|~;0(5pf!w&H4(vT=1} zBEQmPMt-H$h;)=`7}Bve$>O{Yr`I@V{&wug)<7X}vWUdQwdWi&qVg zYVu6SFbR;AWn*B@HP`_8v}^(q28#)xkW4l!z-S`XWMIKv3acd-Un!+L3AZZ^W}^vU zBq9Lm6O#*yDMaQL7Zg&6mNKmt&+k`x^g_0S1;-msr z)p&m?(_sb}EXBwZZ!IiDRpX1Tg{YxQ$|ZddC^0dKDU)TUqY((O=9e$0K*pgEU#U$} zzKMawo<~7rD3DN=#^mg=1iQ1P2@ZoD?Mjr)l7oTGghCT-l2LL3YekY&$a*ZvVPZAZ zN|_RF*Gc(SiGf98V6d_V>WqdQCb8x)J-UAai4Bv^k!3S5$Y$N5E4Hybdc#Nw)zDk> zimePRx$G;4h1D=c%661cNHgRUBdO_8T~5Zm<7&lhN>e*SGe3*SGdUI*ybI zjRuRIQK5-A8=(j(*Fkz7lrQBu$wGuq8b;a(Dz-TaK?V~iv#G?u$YwU7ei23oDGq;R zvfD|AQzC|5C^5>X=0?dzMx1H3IV=X0rXcmqMm~kXLI=W0Hk6?#F0eUJd!@lL!hmm; z)@*A&?tmQ^JIPs>NSk2Hvl<&O5Vlq3az)|STXQ!czl3}DNi^;4O$wfA+g=w+cv#do<%42=1cI1E42m`Wb zNobo!a#@6ic(4JZrLo$Im_;NM7D`39H<8yWkyx_@?I13i>p+idO~q2S5oEO+m_Dt; zZfAX^EpqjS&S1-AGF_gvU>NSz6&bRbAL)v-EvyE5$yC7Xk5CaCEj<}uRu{d&XmiR; zHs?s|9kx8@y(E;IQG?`MSGj-5Hb?$&=u07io!yZt+3XT}D2@0Q8@F^R*Jj9Mluv6~ z%cF)o)091o6i3mVNrr?;=`_I6WU$$R!~kqICbg01;LHFY4|F1#5ljq8KNhkK4tt?f z8S#B%Hkng_q?slQLrZR+H4kVYQ>rDGp;@Bt$1vCA$Y)3*g`tq4HP?UURA#ap^9)P_ zb^Y>%49%ty&Vn7p=d)2W1?lN533}n`B#cuejmXV*Ff?V6SpsM^llbApd}4m=He!)^ zwqk~bR*RM0X0u9#tTYlXNGwEklw?w|8;1iCCIT7SY~?GUEHcX>k!}UrOeFF^L!_PP zWy+#V7MLVOvz0g*q|twpqtL)QiUgDLpGh6=5y37t!EH*(TXdw4=Zz z?i$SOUb4U`pi3>VnOHE(qmay54iefK6Zg$_$@2|1E2}4&_=%0#oN^kU4A4n@-%di9 z0}SVP-bns z#w1!=3z&cYD6$MFv=*UmQ4WigpWpDY1#4aIikk0E_vvg9ET@#$;_=_AUq z)Of5W#&j7*SHy(ljl^lKB!p5X0T!Omm{gAGj5pa#WJsY?C6O(VgO#f?naMJ-2uvsP zVmqrd;cU|g)^BP$7m=?RlQ?F|cjhMx4ig(wwZVUE$TN^QPnqr*oMTGZMl*pO!?Q^& zM?Y)G#6)Hp$Tfx{S(?>`dlSj7jW&%jouyg1iB?;ogSr`I8|hA`JtUIFccF>tAxmi9T~-3BeQLtnS_@-rk^qtDT(RP zcaDEx{!5vJDan~fFVV@$0=v~4%rf~1vOADd94Q%FQGIPE#bl*QXc-B?DV z7h~eb60=D<^_S4a1Z9&Y+h{eQ--Iv21)Rl~^gV3_k8 zwUlMZwmQF2OAhK#WN>N1U?xGvWTY^|6OTZ(8Si(w{3?%M~gu|I2-76J1%|&N3 z$yAbs4T-MMnw4j?nlV^9NBJ7sQ|LEc5#9Y!?;;7h*d~FI^{C!xAY($8`XqlrX2~q8 zgYNZcf=t^b4g+hP%kz4$1T}cN*r?;-LA)eMGLp5rk)?bQY)PzTDfjQFJFt@#SBjmF z@DvV7Tq$;*;YzWS0#}M11-MddLr+sBWDg>lhOrW;Uzy45YB#bJnL1%2NSSOhmBDBx zi&vVmk-$&PeuTtQrtDlcACZ3)nNLkQRvWcOq=-YMkU(HyDZ7+Ox;2Y^XLJmAnCy}> zWi6nFPhta0k(f;u5bV21GUv+lCbFcaDJ)xgdGS(-lxIYQrzx^<&y|ruDnP2(mRnrH zzboJD@-31g%SN(RF_B=2lw+hJpSnseO_A-XluKr9)`QHWBxj4bO9g)-Mcs%j*KAgv z8ez&dI8!Bb<22lX5}1#bFSkI8#_EvrvW(WkLZpZ<4Q0+mQaBp&rGbE^5<7F(pebUD zWKl|%4oDd-)_hqaX%te_)l^o}rLL6KS3@`OB;|Ce@>O{>Mcs(byB2(>GZbeT4WuJ* zA6sX__K|WF8hvU1BUOLC*yUIxrI&`8oO3Hp5yyyT8%2^zF3B{A@5r1~Kq_vsTUpBK zHR!=qGQSZIr7H}YGSDRnQguCQ%d<(mlF8{x9myOrp<0+$Bx#W8j^j|8#8ko#e|VCe z-MEruO_XV}@TBup!vu~F|kPEv{xi?nCq5w zb`BevZqzf7SBu?faPDVTzqpu^oCE|Z(jw};2!$CwrEXfX2X|l*v zSi)*algwy%L3%?jQIkuZ14-gR5u``xIUGqQnUq>5eq_j&6`097!4GNXIqV!?q}iFhNVD^Kk!GjiBF&D0X_{=6kbyp- zplJ&|(zSn(2s47|W2-!Nnj_NeNJpgExeiY|Pib6f*XfEY?K)a;rQ_*I4Oyu0wDUN@ zm3D2{U1`@o+?96ipLyE3iFT!3ds~urjuLYxnl@Vv`8hQBv-U(d3>IqXWb0;UX+8md4`)k!F7n21J@2=ZiEujVEb1uNRwvxC?%srFNenU&HsJrJcQkeE40I)yA>NIYYXNYc*33>jUm&~%!VZ*|!1R!1K5 zhjfQ2+c(B)h97_IQP<@^>=}j-I3H2C3-F}kUjq8T!cD-QLI{D^N?N$aNh1Na2}@%f%8;d2%K}On}Dn=vy4;_O+1X)pp3<2D!_jO z9+|KY=S0g+mZ`vX8pF((2vjCRmXRz+?TAA}K(_k^Sr#1^L$)6T&Vvzti^giT{mZmn zt{a&{s^czTk0+^sIep7R-_yM#SWbdxxr(78#RPvzVsDk+0L zS96m%pGLV!oX?%81QVi>Yz&6e=N~Q!J*3FMA%#mK&LdnBaSq{U@^yCP^g2TwrjQIG>zR2{l{E;hRYIL0QP7B@6Xz zgDj3T%Ea`zPfVTdOyXwB0aSm&O*c-;$$@64snT;k1~$`Ft1sgovN} z3lTr&7b1RwO+>^PEbf1vOhj>HtwlCFX1Cg_47qeNr*T(C=Z*gok&IMCCmXgBOO@z` z&ncqwk1qlG$diZ?a)?`U?Pe~bC3rjG-;B>z&THqi}bZw=mNJlp%R*Q@t0@Ix+5hZ_XWHAOQd$@x*44rg{ zNStxVlzs|7i0ErkG8&%EG(LMZ^r-K0WPTtmWa8+S%1HQ@3T1KYp$`;nu_DW|I!L99{UD=He`MaSaMOj# zlyu@Z5tnj0<-cT6hHQh4$y{qj{xm|!#3KPA6UXX8CXTa(Oq?7O8QE=-X1Seh5*dG7 zAk+ED{j_KYKPhn?&=Z++ju7i9B2$xPqmj&#+^C4mHGO~ar=)H&{sa)R0*54{ZsvSJ zh{)V0vAth}K_C2*&PcBJ1&B;oX*Xu3L{|R2t$cg_aMS2ihZ#p&jXWCg(*oXLA#^)c z6+*YeP9bzVpQJ*k4U*}ejHaPPauH)Bx?pcv~&}SqkAf3 zr-7t|4CjBQmI#T-j>M^`uQUEqq4OOOStN09_Gpa?O(Ys;(`ceDUyc`%h>%;OMxu|q zCEOl4ER%RaGRaIA4N_({gf3lX*Pv0MEA;b|b|G{-Di=bx6Ko+QtCbArK`#-y8JqL9 zCL*LWW06$o@J*$U)hrGSae|Gyp^PpK*oqrMyUl-)Z5d{;;|Zoc4^`spD*A39efCC$ zuIYo8#E!-qdo*;d#p#)D20POgQul*UA$32eqf)*O=7-=^ig$-d6~tpBB6Xf7$<&5I z(i2uQ3F<`Z3Xc{s!x1T8&(Sjpsib_Ng-TV{EYkNRWJ}q@NR*>HC?a)ln)3}VD#iO< z7H5Ctp?6WK>zKit?5~PRZW6kP)a6n#Z>LXn@oM7H=)cx_GRa&BG3$tb9nes*Yu8{U zUFkeebrZ9L)C{bT-Nf$aja1B*TnNhaEem4A5WD)5o`z(wXE#I~LC+X$w9O`2gdta= zZ=w;gD`4Bn9Bz=2j?D9en7f3TKf|PAYrcQOVsbeP+jB#V2=8VD=o4qa{MTtB5%VD} z#A6H`+7q$M65WrhiC9mpA0^Ue>aCe{`PkH>F+bw8Wf<%k&Qk{>XKtH?9WI~1h+OO_ zY=s%Fqbnlkj~Yk2JshEO`WmeTXH>%0h}^k1fIKqaWW#Q@nMV`;@O(6TD#124^b3EN z(bIyhIT>u4AYZVsju{(m(~!7pXJ5E&QG635Heuik_SyonW7}gQo1^9)OPdDgDMu;(1mf)&yirN;Huk!##g^Di}e1Fw5XevXRhSY(Wk1lD4z+>1M!4mKVjS z0pGRC1{T;1IYcq3$6&7(9?kdwkd=lQfiCnbGIi3E6uT^6DkO_z5_jqH!q3aoqq%E7 zVCLi&R>*gHDZ9kzd_pGElWECBqdaL9`R-q*8PwLC-RafRqlI(%;#%79TZ@0`m-GR4 zoK!@Y&)K9N1$6nu-dpEi7XObgTX}fWpB>1&@wNg9Uv6=%3;ot@ZXgQ-nfud~)*daL z)pZYk{2i4x9l1K-a4w-I*0+ zFe@NAoPqUUU8Xi=*_^LokQ{$_5nkp?PZZ0SlWV#mKcCEolq53CxASN#Yzzk}fRFEAwl;lHp5&|FiqLdH8?)@1XSmnwu=}{&)2B^Xl&5>)bI?agL36m#aViw|ajMKm16h zo6K$dP+-80_TQ(SGA+uYcknK@7tj}q&9Y%ulSNi!BHM1VJ0x?X4Q5F^#$qn^bKb!u zl0D00!nb5ZNHzVk>6Mg900Ty1f}dAEk3Ro3j8OjHH#={Y6_I~!kwIo56DQgH`gw(V z^!@*F7{Ug!jwco&%W>Ff*x}aU=cV`1YOJ#VDnHwSez)h-O;Q2x;%+jFwNOSH@59lQ*`@nlTzaxp zA9jP5T?VkrAa;MTu$&Hd`C<<))7W>@cjNL6OMSzX&0?upEawj_wSZlI48vtP`))P6 zY+#q|OxXc;ImpU8%Dy|nZa*82%Q=?1%Tf>7R2eS+tUY=N*e)x zSYMEK$`^mQZC*b^UJS*mDfN7Ry^sW)5jk&UQE%X_jbo-&frhGgrg%TP2dt($vT~_^ zXW*V27q<232i&V!JFFrccxlLq<{nA3X4PI>p8Ym3fnxQ#?-~uN8AUTxKlkhC!9PJ+ zjn0cQ23iAwk5||h#>H|xQH$PIvr6{ev%R!bS~Gv;)PEjZP~V#NZL|N`l>z+b`i({w zf8gDn-=C|f3cT0FR$8+$N7i_TZ79|Xtm4y3jylxRjFA;@>I>Z4B=P5Ee}+-~XGFsW zwa}>yhj45lq+OCY%F{R|X*o)6n89&4dIwl6ZYxd~DDuwG^1KU&aNIMPXE>P5rN`Y6 z8a#g*uPv2+$FO*GZKBur#K?Q78^#|>Nd|uUq>g7*1@O$`f=~}Hfx#TTGCB51=Qu2u zqb;1{36%ZOk^libKEMFo!24nx#E`J&4opITuAus_4*Jht?hmC&*+gIfstDm z=zhR$b*felEHpO&7Wqwi-mneLQ0M5?$IXA9wWiX#dxp0NZXW^Md$HoyOEk0YmAzY^ zd<`F}H)-i-Z6`Jd{&?k;^&*_?o=%DrS+=?{WO%hX@jrQUUpyx(_q;*X2(60)?j~S z+3YLt`crJ^zjb>^4;QcEsDoD(g}^9*F#=;b28s+3(Hylx znid>hEHwEoJ zhD|o|>AhX%g-F2gM3@WrqHT?~T&;ie{ z9FF_5I39;fH)(zFRv3%QO_uv_tltjNsL6`zlBK92Ro3Lt-ZN*O!X}%l-X?#Y%$HMX z(+N-ef3+(SIB{^}(0y=*rk@|U_h1GlwWf;{S7WXs*fd=_VQ6xbcDp%t5YmnUyKqcy zC(uiv$eZlLaaJeb&Yh>14uKCfy^{Fa9EwhD`f`1F#xwLzv$#&nMns@Xnk}d@v|mtD z;Mpv%rO#j`&7RDk^Wr5&vw455{E*qbVO-6_Uned)jWW>~#J3N2vu^t1^^69ZU*S#>tt=gY!fAV2Hp!Z*z{?+xswM`dP`3upr zb;yYp%})i;+ggvf640+6=AqVKtv+$7wM-xkoMCq^9qi4egZ((p@9c&=?|hNrQad-~ z87_GVX(xd~*`;o7NN;~@Lpykvib~sfHeI~>3_P~&$771R`lCzQ`h`@?tiWw;qwU$Z zUh04oA0%yVQ%fM0Y79FIX&-@c9DiuX^ZuaZ(w*S~x6t~GE1jcbp64Intj-Q1KlyhaDDTGwRr8C5B3&m{P%w z!rIn<&5d1&eIS1wklcOORz$gW)2>Dx>c^`7b-UkB=MLdG9?HBb^?vy<4GUSXX5a6* z@)1h&YPIfR>{U--&qtZ_iqVr^y8cy@$0MG3{p`8J^AGr2`$m7|b+Dtw?R{r$YJU;4 ze|x`5Q%|UoxBd8wk#hpk%=WJe9lyVX?X>?pPS(+a`gVU9^25<42CVx!NLMsoUe$o# zt+*Xhr8Y8b>U8Pb(&yB6I-KbBUTJs@JXvS?qEDf>!|Cg~N=sln9mCbW1Dm1yI;KAz znO=er)Uj~(zO?yhX2+tl%A8Knr5pAZ*q>vz zkYz^c9LkC>eN0=DBlcFLB#OBli~gQo3$;qASfqf$r@@8bA8OdyxW zg!8<{9vnv|ab-WpbLr+pE5Cvb`ej zi6LBiT}baIap`@`WIhGI*1b3wG1X`4oO5?V5aoPkD7!EI3#$sBRl7P?O2DSV=X&AS ztG<6l!E`(HZYWlcT_=Y74R3}CutM#%mU5uUsi@8@#NY1a zpKSe%&4vE;{94-;h=^3d`;l0<_#4|*UVH|g<-h&wn_Dhpr4ZmT?)Ocj5K96gxAcD) zdu<0b`+!ZOwj?~nk}5D{Ly&4d;!faz;bj{x!HfdGn(?r~8_fQJH_w)QUK8_iP?PI3 zMh2rgLG<58N`X-V69vL{fQ>|kMll@Q%LT@945}xvk-(+`TL^3`P$tkzU}u5e0=o(f z;FSyt64G7*`w0vcd2wvP@X0QY&xC*Ug}@IyL*F4>nIc|b5=UJ-f&B%B3zYLZ=)_p) z61g->=*>$On8MNS!}Hp^3iJ~hM3>lug)~%PgvcNU)*j9A8-JeRn;t^iOGrb6R5bIO zFoD7}zEKE_6dDE!9KI)PtUe}vzSSKpEPH2BvC%Sr_ zM&uP{zfM$VT{_2dHAl8Z1fDT)ydfHYLnwRJNuU_QXTp@9MF3(U1`J(5s27mj_z)aSw%9E{QBT!ne)FXD~<&S}f-W=K20pYdR zk-nPaGcYp*w@Chcco9|=!TKrBf-6@B{-zmOt6meTEcn`xxtrd@G1@hM!Y7g(s}848DRT%zZ=K8@qWfxtx(4!eX1-tXnQ0h5Qq9zt>chz2qA5*Q{j z=!J9$m+puaID}_-hqi^*S*1Dp5D_M{e%g{R*xVgDv`yfxU5I}gp?}6tG5n+io}N<2 zR-2VpF>qC*8W_#~)w^moY{wY)?|5fln|X+c{lj0~I(!p>w132r=|12~z$2ux3 zb>P}vRbVjT{?UKauGkT5!sAodOsxs;4$m9=cIjt`so~~($Mr2SQH4)zAG7o?%zE-J z>06owV6f!#pWcmPO9}a=**&82Fb~Q9Y}j>i5~?mgb@x=IA7ShAvt3f^dSP)Ye>}Ba zrK_-1`ST^JVeI%ZqS~ZpN@XQrjlp{t?uUU#be>Re>x6&*&`=SPp7lqq8JM#oGD`lj zFNKvv6vckuq!`PNh?2>zys88U#0UYs{JAtDl;ffxj(Y=m-s>2wh*2+|{4pMjoQQ9$ zHTq;IIyGW;!ChY;tc@Zz?D^tuDt3SocYloUy$=Qx@o3WsFAdJ+6jLLY!ZQw{(6BtSXed+v&TU zMc7uBXP(@k!EPq93)#t5gKsiaaBLDTP|mSqv_KWt&{NzN8Ot$QNFCukuR|!C=!Qb? zEFqm0$#JQ`4N(H)Iqp|+Jf-A#OSFw`#3DcabK8H&V5Z^4>D?*G&>OX()VtF>EIXnr z1%KJ>4AxQ6)ifJF3+q9v9^LQUktyt$FnYvN!x9U6haR<6O2iRIOu`I>@(-K>0xudk zzGc$o6FNU1hE;sbrK3Ba=AdRV*Gd|%uF+Fqh`<3Hqu~q;n{eqQCCA?f@C;YvTzUtq z*O-6Tm#_SI5PD;GHjMdV6K3?-vzxvtt=V2+SApF)di!yV!SV}O+D>2>o}tu7pwLh% zG#v02h*>&L`MR0h1gnmVI=c6VU*Uyu-+q($W)PkX#?3wXNA;1=3oJ#jiTkc>RQ7u; zM&dS4k1m*x@EZU1oj3h!BNWH4de!pLPS}4#{E;@sYW*?Y#@`-rIoSatQ04u3c1S-= zma2mLA07N18dN`D{cBt$9H;=RV46{tZT#-)z^XKZdWWS!^J#Et^_fP4n`znuFYNmD z1UsBnU-T*c%!1O?ulg+S{yWTGcEQz+2dT0pBsH>T;!^AcTsf+=_PB=3*X7+HJ}FAaK|uRyHU(!FvN zTCA1K?GDVqQIB?Wn~4t^1PScVF(8U#QYC>{6EO7W(%}k@Gx~Bo9>DWn>&fv+v_Q(I?juh@G1D(VtJ|oI{M#K3@L)%Xu&uUAs14%)WxniVlky9Ovo6tUiC*PFR8H zM*i_|>$YHl*mdaE2K>^V&Ahr_zn^fTMi9ql@J)S{%!Yn@VFdcNF_%M95To?TM%lM5 zFlXrtM#_~{BL&8BY#bp_Auwh)N0GOOT%b^<6jG(gn=Pb;;T&g1a=kM(9G8d;OX9h7 zeJq#m6E$P+RWKA9PKpdCqd9-x6qURg&GX(Aw>=k)e-4Au+cXc`d0-CEPwTOHRqGZs zZ*s$PHPRNLh~!4fOEoIt^nfh=gG-IjkdhPkz&Z;Br;Keer9l!l@u^im3_NIr-qg;y z-W8WoFkOf}tibvqb?AZnDXFMr>dc1Yk|$!>3_Rrl>D}=Lvp)=c0DXVh(JVk<2*=<+ zj;UcBi-eTD{J{{XU%=TS!|Y&zBJU=Df$)m~vJ!2l{W#km(CE zJ$H1*pg=^J^iA?do7#V%CkJM9Sbu9JCcuHxn<0udIAtApbm?ZF;Ru-n|J;6~u^d~u zLDd5O*uaA0paH>`ThG9-;6QeeuRsMyvw`Eq_5zgxBRRgs%)pT8Ej!WlOmA%a2K}b4 z+arkGb~mnSSq+pnIPbA8*%uFjfjxBs^*n=mFvsK}9H%Dnyik~kEEj>tt3Vq2bkLPt)NDx3S?>o$2=PO574PTP!l_zD=NAT3FuE_p zduZS0_t4CYG5wxj8r(u)D}ik|UTVCXV>2ObDG)DoWSnTeYH=AhZ5e-#AE#wc*N3)` zt-o3Z>l=Ec^0Qu&`<4KFZ4nf{+l zJZ#3gB-7C2X>kYiWah5Ur%|2kL)P4}UyMve zgvmN3JN$?}6V7g5|Ca}g;f2{9MopL(30u!j|L(V!cTs<{?3KMf{1T6CN%sBK534N3 zrp?fD^GA+JaOoWSuR0257$~F>LK-P>07n*$fKAo>woV9^qm%&{wCV?TNKCBDxUXt zLoU572KKh6$k1L$y9pG|a9cF!wiuz?(E>%M-j09gw^bx_=}Tdg?-4TTd_txcD$PAP zde-Qf=&0OB8*3kV2;VdgJksaJmv9{8H|3q@hapxQf9c=mO@D@mG+{qyAx@fF-7k_> zU@kQE{i))R4Hjj(HDqYY0l3q!W`C+)vGcQG{&mZvmEIf&VIww7Rk~%#T=*N1Js--; z@vVQhWFl;xZgFbALF4nzKK{ZHg{qswCv3K{MWlJw(BZvTz%=qhW?wJch-oo@+U0@; z=P~m6znMyX24MxAe;_QVl+8o=*KdxUv=4)oe|!4L2=-Emr7@YOn_w|w@jod|%tIY4 z0b#*C6ljn|l`!D?O@;~6&sJ36u#+LXZHa$*#`Y4I-VgoonwN)j5MBifxumZ1PjM9f?K3_LoPEE6QLyg>?=Ld0YYWEF3%e#_lI5t?;{oUk<-T?-c%- z^Zn;Fab)1|+M^F@i~2fN?MO&&5-5K#jAPFrfjtEV3&dgsm>j^R$vwE#(MMoko?({1 zzz~ib0(jn2y}9&MD90D9i2u}k@^OILh0}h-Y&xR%*0`dgssgJE#CsJZbcgaf-ozqj zM8TTifF(HL98tb8a_$xcbNYJfq9V);Me3NmI+^H_qMZvoyU)hHW#rIG*A#!l(Iq44 za>Wx}J@VLRw`%r+?ToAl9c1%FAT4flasGyn;hV+%Ke~V9AvOxdgY;jP)Ux1;?M|0#&@~n}zg11ecx_(yK!6 zT_L?IinuG3y%rf>vj!Em@8*BA6^>p!{Rgi}yJ6MEhlXwaA%*3=RdPX9fah4y0s{r&sS$AUATHesqXnK1=hE}>9N%CX9~JoF?stipZbv2DTEDCtD{b7q z5k-wMIbJbvyaU?-{)3h7sO{71eVl}-G3t_+|LMi7h!;=(C@R940>gj5X(dP3e(>A2 zzOX2Uz8tq1hG;+*8=#o!*d>ZL{VcSTc3yut;?8G7Hru6#2x8+rcTRM)$AQYYkdn8TSEIh;zDn7!#s$#Il-KyE*fDQ}JakuRiBRV43jC&t3t+_9jN#nb#e)5Rg zLi=pIdVci&+R!jQDR%y+lc8a}ah1{D54)uCrsn;U&b4yTcB*h^Tr{{syI?)*quw2-30my^y4@IFHKJL zsMozT26GFr^bH;3iN(``)b&w^iDUYHQCcaRV>T>m;>-p5e^#RVCZ1>(akK~rOB3&n zs=LPu&%z6h)jEF*>>{wMz%YT~9Gj$Y>=?l@vX{URj)o|KI*t>u;%C@UNZSZ$ppa_0 zbblz9?iU5$5;eQ!CQat}0;W8v=d4I+78Zt+Ci#!`oP=fQq{S-=i<-p>jN{ljoMW(D zpi-d78?51&D{d>oyAlkegfyBX^A_N2k#}|s&#*}p@wn8xJPv%6cCy+~hf&}&y7$Wla5g5ubE`Z}Oe}O>)MQM|Rx!%cr zxwI@$U=NP>dkG8{h_3!p-+W-r=5mg#cfQQm9v^?O0(SOgY39@F!(cmKmSx-<{Ti|F z%XfxXHXSzjDmi7Fe0|DDRA}k~0?>vqDb5X?9W7!}2eT14#eYD}nSE~^~rat~MK6xwlEnl_S zwdsFe0`h*f=I7Es=cAcl{b%#?&!Q?(Wz(jHZ(m&l)tR>JR*lsfG-z5`r_!zQSmxs_ zu6rEE1T>RjG)ETCfYTZY^yBzT6vtyKe%oXCF@4du=?+$h8XYv%?HnhI^W+@2!Hi}GE?-!;CT4$L z;1ZbfOihP5!*UMNnRjOCU){&CQ`VV#lAhjg4nv$(d)6nuMOa{bTYap){3kqu`nJ}t zlgBQ=-@aW}6g6-IV)bn6m;u%aC~fv|-A6~Rq0eTQt>53X5Is5jK(*YzYQP@IKKR$i z1F?skee=`7>eX00&1u|r!SvUdlIDN(T)R899)@sEB7MZPkapCZyyI2YJ5bu3^V%B4 zQ?dM-^QKrgLyH#A%_>d}WiR^A9slEE=R@wf3tGT_f+4D_1Ic&?z1Ul4t|2t z=2bi2S{nhQofmPZ=ZI@qBhJe>QhD5euoRv*m;9@&7l>Ubu$D@ofnx)ap+$dvep`!X zLfTxQm%t7JeFXXn>@G0G4Mh=QLaG!PB``*y+6{#U9mg(mo}tSSjsaSZA^ik~3Jez* z!7)}LFjAnXS!}$(B#!DFj!8O>Y2E@wN2T@QRZkOjND~F8i7rVKbx0E}Hi_XjiQ9@r z+lu=Oj25Wnw-u)dspzv}iQ|74;XLmbLcnd!1_~5<&-E23T;yE18}fqBi6YJkZ#gHd5heBUIg(HIXbljf@~`jmEu^Ufdl z)_ij-_6+lP1f4JQK-{74dktXk&dh(l^T`G_EzW=SVffyDxa|i;i?YlUXyy-VyPq4` z6qC<_cCFSuWDjKMuT*~@^w)Acf?&R2__gqu2zbDP>GLaM) zcSN!bcenmEzIGr-E4KDOCT)G*y%`$+=u~c7M{PVe7*^0wD3Z_=i-5IvPFLx1H;~Zf(J5-vTDrQ zd>Q?)=vPT?_ySh4=y>aWM`d_m090WewdmBr79OV%;up6ea^+iU>-5#HE_<*NTRgM= z$}$f;m1CI9rCvk0G)~8*Uklue{rr+--+SIg*m5l?2=zGAD2<~6cE&JDpq8U9nPXOj zK#_NGbFOT$50`)5fSoOERO_dCbJ3Gao5poob{pY!sV2OUv`ye6miP7R2@n0ysq{_Y zd-oACf65N2wKTdj$DdHMpGM6;Ir|7o`)Py8{7Wd5Evr87*p`KOL1LL#li!+VV*9Wx zwBwz9@39MAwtDopcjS0Qe%ZQj$Z`ZTn0^*%Kv}4g*Ng@6r%Fa({{HVdjKu| z`O3sq=bGcuEPb)4v}T|{EdCkx=2GtvfngkDf&}*Aw;6>pqqxo3m*eRE97_ZEZKXZA z^nlQNz)dO&zAG}^Wy;>mJ18_*G%OD!`-5x+#|g-=Jnzw%vNFsJ%S-=^-8dEt`sI6i z)M;CcIxK%DTgW4WU>eKM&N-a%S1YGY+PSSZHWdtGxU{Rt z&{xSZUSt?3=g2l7z)=wb6#_N9h%X}qM)M3`syTia%W*|K$8DlI7er|nM0Fmp(pH_# z81ahL?3&lB!bpU+RgJ4`**6sjAFDJ+6EDiKj#_p3+6W`t+T%y+e%&|@L8q>c^ZG}& z1gC#Vt2Z6dm*(Qx?dm6UA1-)|mHFzYRrhLUW1ad-Ez?x_9jqtmv#|@rsB8Z_MkIu}7Z`&s~Bg6s`=i8=&9Uo6qer)yC5%Ol5;^4YB+zz}ya;S`3 z*8#2MZM&+nI(+Ls(G9yPtsfs$6WY8E**r!hDeaGDwjo?oT`xNgUL5qzrb?4XDzyam6Q zz85=O7|>NipT}Z>Q?uEUnYL*ZYLTW;(%;4lkI)W_V-lcB5k`Wf&bwdj!67~*Cf7Zb zuy%*(XZ>(w6YijP0q}-+Fr{#FenKfSZf@GDPkZkiQ}?xVvg;o{$Sh!m+vJ~6ffv-g zdI<5Kx0)TaN;*Y9b&JeXHum$$=o0NM+>o6}UH3&T{rU2-(9caS%7%ANf^iD-LP-R- ze-z8UPMf|Q^4vDX3zHXc)eHz&yM=1JjGI3_KaEaGk$K|pbKprn=kt)n?}r~cQnam} zRg$!asuhX3V*xj4d&4hMQ>EK!-1=El7=Z?`ehO3+OeZ|SMKr4M+U9Dhk{*L#TRvXq z==XbATeI&d623#dBPKe-bXZrOturwH8bNxxBV7I0jOfM#-O533D}taYizttqUFow) z&-(=8j-k2$Bkm9c-o%4W=={^)<2x*)Y~VWoPHUX&8n_FruQWU8D#-{Ot=EYgOb@HB zWF;*;G;$9>@xO=ul#A{}3C-`=ph^c*%ZC^RwWeZU{8r>KsD z*L*kgoaN@b#0EdckMvc-_HU_=(PR>i*%g@|=3NXV!6bu@K2> z_ZudP2F8c+KA&z2u4YT%q1=~)Z%B-?`JlE6!0x-9j834;_=xI^H8>k-&I;xW2K8ss z1$W9t-~~hFA~X}Oo?KVyQ%~@Gc+fjDWQ4mgcYHTmmF4Zu9?{qwR>DvE8%xl##7vPX z0Uuc0_4jrwG@mUZIAQnub=4pHna9$$DeoLYXbUnFOHQ&W6Ik^nx;>w$ zkNAfEU4Lp&(MZ7GLfA5ty7fg&f*R8T5g6RYMEx$+!|kNl2quvy$5)RXH%@!xo@DO% z0Rd#=UA$MB^hoS? zZ5*9G{_YFny?-JcoF$*a)5i6V`;z4Y=OH|O@iXuyg_oZy>W%g$6=ye2oT!Iw9|jqu zw~#v_RFRJp)hV2-^({%0TlvU8BNP1ndfDKog-7Ed>wlUi;J&}dWsH&O(5_mXCqLvX?Ms8LC`pwov}wO6Jf0LO zM8=V4lemcE^nBHD^?Ea*8&mRC6z+iHoAy(it^u~uWPHLW+-Wlm@k_N_MNjhAcH0>n z`9{{Ivt*c3^+(D6()(fa%W9ldzH5>twfwvu353@*AORU8Z@MK%i4>4rU}PF>j=(Q+ z8%tEaeWTmB`9aq~h=^Q{V~OTRLE`WxM{(ho%3K6lIg=R+-EyfJi!|F(6)xUzhiTm1 z4^X^>&~L)lWiA4dm_)NP7zx?~W@`8oIRp%v+?wt;L|P+k7ai98P?12MuTLh|k9UPx z8<^M}Y0ph*GcuK1vo}C!i+j6flX&j7Ic{(xvLGJo(7iL|@4K3e{}d(IHL;Gj;DRky zaU$Cbra6{}aDI_>VYzK7^BJ(Dct@m=fAZB5cqvTZ?uQHRYoWO%jIw(k?lj%YIf?%* zv0QgG0BPb~E<&cg!99ZK0e$p5))_V8Oi3{Lnw+E<SNl5C?ACb=OXxlt^JG!HVG zxdK@8Yszm6tbw@EN<(E5Fdr4-6L=d4Y0n!npn{d3+%r?+O(l34wC`8|OOF@V+s#7F zq3>yF3)%z#4!C$p325})uif(g3&VFev`cax&l$Ry>-=DmKwI!>n*Qb$nD))5*NGTT zM4IHHajA6(J)rNT$x+wE!h6cJePPhaOFb3l0<#t#x*tfpcW}M+V$krfc_?p+|@u(bHl)qWR%~1E4)gh`a zqbPf9&RwwJIzHAhu)7UTlA!uaD=x-Fd+Aa}!Ta&iVXY*9kF$(}%b091@RQHSW=O`o zhSoV?7cdtcdLv9F-1*kl<}UACedl0n8#T(@X=VWUE)||k{lR}=fT|jr zxOnV;gJdQ)JCiMNw^~@M6WtA8d2y z2)7@S6XU zYq_ZlK^~vf7oBMS0o83Qd}ywVYUsu6AiU@2ny5q%$eo_GYji}OHy*QJy}6|hXWO%& z;Yx6CyAksVr|V}1(r428Q?~3I+YuLZUns;T;48Ih_}a-Jt(60haV7V(EZvK5{~)a? z&hZmG|K#A6U!EODKPHdFK?BF7R|5oqT&?nQxs|=&$|Dy4yz=9{$_C@lzyX!u7b3m_ ziNc|h-qx5qYvI2o1UFzBwN2R!nn2K%46QJ^vuJUKtTp$wVWOgDMw#AsRvQ*S{cQaQ z0S5}2C6fYa5p1CGNF|Yv(GyoO^!FRpA73hhQ(zozNs7iFdzh;;PYjvv@ZS%Uj7j^I(v{t`v`^|37~ z4uc79>o7f#%%7IWx8a!kiDt{)uf zAyTRHr=S0P?&RD$A{g5o>P4vlzgldl^B0p1A#xQR=yIuN_rLl6MEz>K{*5!ZTBzn1s3v+FsH7(z{ zS$XVHIkr*kSu3BsX_v_0u5}~Z)QR4fq3_HXxo`@*rjGhJQESoW&J3G}Zw zcmMw3_HlTEmSz0phU}*E;dyYMaiibpt1_m>oj1xx@!5qsR;27Yg_xbzz3?x5r-`3$ zyW!|5xkkH&l257>fp;0YmXbHGHHU`CKS+Tt?Ld?w^i7W3dhWwP4*D5ySTm5- z#pDbJc|3XQ_Ii9mz}i)xP0=XKW9a`8@MRJ<87PVL3_qoICa8=ie!;K$@S9JhYl^^o zY)uGi?{hWItEtoe{eRBpun@ViXx-sHMdNPO07!c=fRdqQ3W{9wUP7lab zH=yYNk8@vo-%Dvgdh1tAOvaxc+UKUK0KLzu{8FZ5i=jVdtFpYbMo@)FBz}_xFWLr4 zlC@m#YbNZ4UrRVb&F7{TPCG(tpuAoBlvg&`B9nuvx4c@^e!ldp2lN3`sn83d2xyqj zBwuw=4_$(zH8 z4n0mJtmr}{10^pr+;97#-OOC~)4S}GD6o&$vBzjn;%9^#X7jJ5w2M0q+|@Q4}}*gqTO@ys+b(QOkDi-Ml)>$}6xqU)kQ z9v~h1M3h@4u-Q>XqS>jVD30O%Hb180h5~v@0D*iC35CgF>vg9dT}l)86vmj$U8lXx z+J``W%ju&P;)r-+|CUMK9A6v)Pe!YRP$vS*Cb(HWbi~rF;fQkdRA#DkaRQCXg~fHWe=&1J1G_E#gSkCHp^#7n&r#sWU!!*V+I(w&qlZJb}kx0UCCgc9eC94RB-jqMHQ$k1q|;)l?tZ! zp-Kni`%tBU`FyA{!00|XsbDsroOCd`Pfi+G#3v^MjO_C%6?`_f{SDNW0mi+&NA!6v z0KIgAUX%bDfHP4t8Jst|J+*VOcX^NL^IQUYQF%@EBz7l*H%7N5hqonPIkGJ|wtcp9 zad&x->hnzM^Q`alTm*Xg4ti+^y+ndulxbkvG%(IY7*isQD-p(+2qc4HX<*o#QRCAk z#(>HIdl-fVwgt6?xD0VY#8Svo%smD@eH?&Cg61&5gO7>_zSi+H?Q&Icx;Y&SG&yQT z6YZ6cx>GUv8de4AL~`RkCHlR~;6r%1j;M#K|-!rq~Oja_$L?enuk-~WRyqsgJf z@2wIS1^?=`px9g03$3y}jCIOK7V-rC2vN)O|KiFXX+gAF-mLBlWk4ZJ)PfL@K`aOl zg5NVnGY*6A!-JRD;{c+tUhak|%dF5Qvy!EpCq<)=msxl8B=!@CX|Ele`99R=W<;}a z_&CidbQNHF8}}R`n2?^g1uY_XaI3~)Y8q#fk>}Om z2ACW?T-1yQW1Bg0T9Fz;#+ZOZ+9ccoqcom@_j?={%85zUS+W_@=3!$yG&?N&Zpcj> zHO9dw7>@d8?FcKn{>ZMzF6{c=9`mxBQon_heu_gv{ACyEj140lR0S$OZF9hH`Lbwr zylIWf*de%XSAUUtp%fBmFZhc+@zvH-ww^M3Ez?ZMz%BIMEBb-8d|+ULs+RVm%3oH9 zwsiQU4b{slR!@E?i_t08>%$A~TMt@Od+y~PdEBqZf+X;q%@-yYjUqXN)CQ+LuBho^ zHLJn@a2UMMTu_t6ezhQu{TOivpRI0ze|Wpuyj=tIyIR{FXw)I6^4Be8Jsp0J)>aFE zyu@4C^k@D$%rzRBd|(B!k)~!V_$#ivU;e_Yw!Q8d5qG9d{DLMHhKPWA+u|5<-4#ZZ zaDsnh^OiZW9CbVyT*WEnQ!E>zXq|H}!>xUwb^d;b5L3eTCm}7?uWcC-PHvK5Pvm0# z{6h@qYN>hR3;4|Hpa+c1YTkH#x)Y53>dia-9{+Hq4oH~UYyTJ0nOp>v#R}ufs|1o! zH_K5~oqw)Et9&r(M^CDCgbt^1!2{=AxI(y=yMHU!%+e-4a}xbkV|9t}5hT5Z9*`TB zUxpy>nN^e}t-xgq9)s`4^eZDRBQ%_=zc8tfL zNQ1g>hjcFobo(w2eFpMImVdV`(XXi{^U0J}j>S}`dsqL1v{KX!CO0p0hu$2%!SV5c zm+0vEhs@36>=QhO`N<^d7`fXd=qf~)$KVDbgEY(+fFC##hEO3iU%JvGb*{GQc(YB? zCHka!YN~XwH`AL^L8>aKi2N{v)t%gZ`@@AqJ7*5CN!M9#6>5cMHsd{=m=`GRJ9@X` zi+l(Z){}PB$j=3(HLrK3lLl!SU)q0di0z(zhOVi zd)X8M_bm>Rqyb%!LepVo%k^wRrg23y;p<)^TGfkS3EJa}|EgXL+T8_I4u9SrR7C$_ z6$yha%kUt5+SNH!*8n9diBlaW+C(_D;E7?9T)Cb+@QXw^yK6hOfC*DHBv6IDX;{2_P>*FSLc z3NerN{<&xGHROGbm`w|MlrEqpdOVHj)t`o|vz#t*kyM?0rF zc~4Md{PwYq&bTMK_~wiH?RNHTdAqBrkOQ&9mbUs>5J#+LBhB_ZE&{OJ*99ip`B=o1NZ}m13>B-KeSuRgP zSLKJ1jsM16FUMjLoyj49SXl`0q;Iw%hw%iG=oHcpypN%S-P5#jFJ{-MMUrG~Az6cF zNl1iLy>H^oGBMWU^G{J^^?BjRv20wmxnm`h(~y9%F)~A6(P7_EXsVooGujUs=W#$P zCRgyjH0iIkf5ikjfJu`8zvMwL-kHStpd|Qu@rfveFy3?He zI+fg4UptFrn{u|R?u?z?jI$UevXEDA5?OY-(WHIQMrEfdL)P*9#gP8dvjVum*?8sX z=7BOn_y}=$N*LzfWNceyH(A0K77?_f zMxkv+exmi_mblAhy9mG)SiKKpDqzKtcVUf@g(r-;)oh3?6ehZrjV{#m=O^003WsV^ zy-7vG{oIPLl8e)r;Y3Yg#c+fk?;Dak?Wgc*HFkEF0Wkw@0>-h!f2eHB1vRo2dtWv! zF{2cr4vqCM<4p<==ESlxr^B=i?90sK<&6mD!;0wZAw!WhR|P(hN%g}~pqQJ(VI$g- zsmYUlCGa$AQ8u^~wOS`x_hlE2sBv}CGE{#ey#45IY_6?7On$MjN(dJo%0uP91tIX? z+QdZtC_Ek>%1*W0CrymAwIziK4(-3lbKZUXdWH7~;anp1@km0qExo!0XHxp=W5vf{ zUQlckZ%0%#4vhJ<>5FHN*Ult;7id~MG)E;@;MO9 z@ORG9DlL%q8HN$@htTxW@KN#0@JT=8;ZGKRjzjZ7N{_<&<~4vwANz)$Z4tkO(~H66 z!!W}~@PPhGg&96{kzT|Cu8X0To`CZI0Q|2U%y34R}&<5kGDHc`0gUoQc)Ea&SvD?1(e@qn+RqH@cqGH?9PcYFAkEB3Xp;WOL?7N) zy)<(dWMgf+c*iRLI}skR$I`TfBSY*VV~sb*unZ#Zf6>QEAVEy#`;}?grQjc${|tWq z;lGl}Q5c+%Op039aYNdX#vG%nx_ibzJDoPTlOsc-Rc7(=g~yd3&_bFJGuvQ#K;{!? zE(vC_0o`DqA*UN9=5K?{nD7dN#|DEYz#^E)kD#|se4#TUD((iTgg12LeWI$pQ<|wg z&^IIouP^Q~v?FBJKER@W{S9{vYFr|b0X1n4FHV!M@PvqY9!t7jbV;vz4e2S3e);99 zZmSbWkT+h5IpTW2jIut^^PS9_5YegcK@F=TT6=Y1^n1&N8fcq2`hdA&k9pEBg(!eO zUE<361De@a2{d}Z`K!bi68(5-NXZ^{HY7~SnCcLsNs5~1QbQdH5q2L+wt{T()eHs6w_kD_dQzAI>Is6{{jffH?qn!Qhnk2w#5~)O=9M>71NBv zxFpu;Vf>53siaQLm&4R*�uqp;-l-HD^S8%&=BTKe2Y0je1qpT==q1AsUxcOy2U& zN3r7_6!$WIJD3!=!+UcOk%z|nVw&u~njg6EwgaV*;VygkiRJ#GPW(BPk_2J%zmNlT zKx0qd)q+8TsLz;hg9Sknd${+Tx?FUSm3OWC-bk?*)v|*b8y}dq!Mq}Y5Olo(jaX>; zJ^5)M<#2PbKV^RN)`j3z!0Q<7MS0hTUAMBcw-PpaB8&EI<%<)O@7LIhc4}9njz8ko z3r>kpC+=N2((iOg4R560Bg7EoGXd})2{f~UMv+>SgT5oBvLu-hoL?dts05WDF$=;= zp@(@QE4SpJb~VPY`(u7A|EB7R^12nq3J8Af;r zqy8yYm0BZ)IGq_)DW}6!$d0cYt*XF4#Z)MOUlPr#7FHxDtn!LoX8aEX=o4~5Z)8*$ zD!4DikT~DuX3R6SrKl2$>tT%ieqXq^K^O3%tdRBk1B0c3Y1E`-GTEYUnFH1~78p+g z(G^LVtRLqGA}1m56Ac0ZCJB7gDwbp>!CF-%DldH6?joD_eI0Mc{}**{j+OgzUt!Uf zlFyG`^o^Gt-S1oG!J9ah!Zc-zSh48Y^e`Xg)WbK0bR%Pk*(ov=E6UCLxhbcba^DEh z(~A45A7UoS>)PieAyx4m zB_b-z7e*drV^#0v|FFq}jK*fGA?=6pT(X(McAgO;SuACY@s}r@S^N08G)g>@NLqHZ z>boY8?wYYKQ8G&Q5JRq-6;}!>@h1{9sE`R_B&M>kc}GlDv8jZt$gWe2z)Z|rF>cH5 zUyQ&(ELWkEq+?d{LHa{2ZyLE;iG2yAw1V_AQUwErw$p5L88f`dJ97Vu3IU^vyQKiN zfai>1YYrNg6XpOg0&ssgX+V< zLs@0V#CbS(m^sw2AaJ1vgQdexY4A?rw_YJVBF=nHBYau_rIA}L3hq#Ja!jVQD97Ok9f zNq4tqr0$xn75M@Ak&stx33!VVCaYtsu&k8131_NjWT}s8*yz(iu|k++ec}Fzi4#1{ zIk}>JqnUc~_jN_d{gKP^0eIZzya-1rbO-r^-}+f1Cf%yhVK=bi&&21JwyM4-FL4MUY=02;U1v2jy~m-t?n5dcJUXllMWsP!nL2?&BYoluT2FE ztF8fL%qA401-pSo2!DMLL@vc?JI+vK((yKjLsB{Eta=qmgzJKmDY!-D+5NMoF(P-1r}Wg@A=W!Z2~Tl9 zrpM;0oc@3=N5pmso<2#TeSHb~E@{S1QmW1!J&psAs~ z4q^iC5f3*)C8afWX@%?4o_Z+LaA&=LZAlN|4yy`^(trwJ{^uW#^(65$I6(V*w~%Qz zR4Ea-(cWn)Yi3j(5eUc5B2}gDB>BUc>u;JAr!+#(ETey6_3zRMd-2UC8F3_BG5F6z za=uAI3Uza^|6K=jmBBdHvq@hk9+`Y0(oUeYCI_>*H8U^vq1Ec|C$z~D=e<5@?oMrP z?j+30)eZTYoiUG6yU`o#c8R-3A49Fvc#KjBA!Z6tYx4+iYY7dfncLU^%V$eSifDR7 zYxPq1=$8W`Cl9R(*Y?403|?WOeXD%6Q%O(BO5=$BG@Dm&d8l?iN$IHfpq{-gY9GKL zNwICbKLo@%+z-Ay&jh`FPqXGsvvTiqY`i0)O?e5TnOXQ3jUC*fsjhj&ptSFUJBZ_M zLe6?MYIkvIQsePsQSN-NF;G!c|i-N;Q_rJ0HF`xr@w+u|D!geiQ&(QWc!<%9q9wZeF&R?L{>XD zMH>6vx0vSif{qi1Vj_#i2m9}Yml@B+5jOt+XbF%@_eSbXq`Sv&ka#QK^M}#K9fUDb zpa8;{AmY*D;=S7U#EN}TWaGS|E%A)y*?qqMwgC(q9v2Z{j2A6CNcsJlu(+F90S7&4 z1)cMu(T4sXEJrL69{2<#hRA99|5?IGGN;qb34kKz!FZ3E7+0AkGuw=HmEhjMH}znP z=0g`wGMc?PNf0-2*Ykb!{t0dOfEbOC-Ibnpy7$k$Zr2M1&Q;n(L^j%<2RL97)mg&e zDmV*w+}~_h)=q-=YU>?s*u%KrtI9g@Ka`f(+0}l3$+q{vxp*~l_P|{{`~3P{1Un_9 zqVGNzCQW0Q+gWtuPT%OA?Sca#Z?eH@z>{GHeSix>fFsIp4?5tK`U0=@L8^wd#*t$a zJuGAld$pwpQ3AtaP(iwv3ka~H_sQSnqQIEZWqk?%EyMg14*`QdAFnEW$z&KrT-b)U zf_ZT*b4~iH>M_}%;V}ILy?xWframl3ZpRnXVZFzdzF_v8U(W8Sl%xgiXlwHO+%jJH zZLu{iO8&@~vD3z3Hbmy0`0846^Bjf8q)?g=d5sz3Pj&krQTen1BDo`DB9$8+j4!Af zTAVsWg9$MiNM08vqLeZ6tyHU|;>=mZ#8WZ2x$y1f(L^T2MBEGue+DobV>- zlST+Xn5GT;iqnId!jMhT4V%M0tDz^_rasde>PN>;>$={+T=0D{d6`_)THKTck9xlK zJ<)Nnm3FgM;FshV$6Ahl%Z-GjC|{aH6PT3*aUnahnY|wb{G1IjCO@=rhL3%~%lJU8 zBCQ{@k@h;;b*qfjlz2-YNRIldRL5SG&nmgNnq;TS6tYh2CUprIT??1!T7*KQ@oY&^ z*)^tLkScTGw$S~>;lYH?p#Op%Ee{V#gYE>q78X`|gl-Hbw1A;six)s73U0hF^Q=lV zJ`Dns6Dd+8-Wn=~I^sT^Cd07c9H`T!P#(eoTT*VwE}QLtAeH;pMkA}f%=seqA@ETw zN;|4MxeurqhfUU;9AoffJyz9cTP|4# za;nsVwzwXSq9XR9PBu%)uDG|KJdw{hxvm^7zK;1X*>J|jS!&lFdj{RJsvRSz5*If9 zG5~GqFQ{0sI@oL(2`WvecRHk0Ir0LLbs;wECANXgP2cjEI*52QOrtYC_72xu*G}Cy zDiI~w^cPO2W5VaV!le~;PywupP9nZz%BugyRYYDiCx4~Za~P_7vfC7uuF5P$kIS@qbzFHqN>!Yun_B4@aX))nUJvL;b)RvOrf76O8M3_*qbAM;G3n!LsQqpk zL&P8s=S*PF#b_a(DgzEg*arwDh}C!uCiLPu!C^6W=>}<=RY*=u-W)EGD*1W@IsbFY z|3SH5J9L?1axF=4p`P(o3fHpK0RHF2tfgrwzj= z*+F#}g_U%b7-+gu<$Y|GJzB_N>`RplhPuhWDwPOybq)dc>J?3pxXzlL>P=I zW=|&nr9xoStDD71Q5oSg-DdAehBOaXiK5xqf~5Hlty0Sb8-1RxeCWl#w36cKXKgnH z*?i0AchU9P0=jAl71m-M*`1O0p4mTP_|jd~x3SCtdWv&AdMt2NkA?#8I@(xp!{%i< zaegYwc?0_0q>38zS5`X|K?^~(C~@zS^bqa-gB=Q`pYUGTEe_}P6w?bmpRmX0@zmcr zCM@!Pey1}{(X&`nQ)P~?z1{a`-us+LLyanI{*9ZQwi~I}&x)O}pQQ;N)@q5u0+m_B z##3(eW|tzYd5GsCaQ_E)3DgxgYv4v?{e~)N3jY2TF0eg!nJGS~NZOSM*NEE%Yu}Z@ zMa$$>s@t$1WaFRz1u~vV{ylPxY5o-_jP_oWE)wNp~!wfVY$y zlO=W{K3)W=f8p%Z|MCr$saDVj^^yjcWx@LBLb`UTqPz;yyS+>*@VSvkzU%iFTVkFs zkge=x_1%spaCEb;cz8Cw>BUj-^2`dSqrK#x=%267mLuM7^=HhhqnZw!q9fk6|03a_ zynkKPx;ueg8|?mv@5#gJN%Z5UD05?it_n2^i$^ZedYfV)eZ?3Mo3}uGZeVJRxrgT= z8}@!pIHk#1kTPw)`}($oy*m!O5U!)6I&ysXAS#29^WIcFDh1Vr32?%56z+5-Ro>F| z7UI8RcjY3Tfz)Q`*WUO36aX&5m%lDY=o3O(DoxPf{vhVlz}>)=qe_Xx9l~oSp88rB z;2esyR@m@2zG&e8nfL7$Jg&w?QRwu3TPp!+^^V4``U0i?SpV2w z=EEUN1-~Fk;*>UR2FxcuA$Gp}D4)O44zh=HMNFa$T7}y|xwkXxqj3I?5+pcHE1=0w ziIxxnquVH_mm<1~=s8-grblbGL;DPCpywt$vsJQ^tlavi>)%??n%-)^Pl)YUgtz}i z&WX{0!X-<=z<$7nQhFLKL;+7gMwgL(C2B(e(iwj~uk?LG38-Jb=cx-(sJ8y)*dd73 zGW7koWLK1u!#GL7k^yG^(8uJz6i3Q#@e>wvg|+;_N)E?|g!%!9EdfR4gz^25;x1*h zAR+jU=z}i^ZiLR?gI2=63*pcelsPYmeS=a0{D^DWIJ6_NxOB>HMT-<&cBNd zx_G+r_&H1vLh$Mzevsl!gC-IjuCRs#r`Av{Fr$p5RvEaZR}rGQg1*4pV5&CZF>-A> zzAC<1ne4B@Bk4f;*%E;pF%uUX2z&ZNM|AV@V37^i4==OIlDwiqJ%OgeTH^RBR)_E+ zJz;x5{tE~HLQJk+j3tNf$BMsIoY5Z*#Tx1eXAi+53P;p5L-rHQ*o_j_=+htRXqs%f zqU8J>!lQ;3;06B}ft4IAj9Rdqd6s!dhHDLxXcs4W@HBw)#@V(j{PWGJ?0kOxG znT>=O&n4T)8&6g{7V*Y<%`Z04KkB&alji1rXm+LI<8WDh_3uyYj>(!xqa*EC##{&X zzBqnp=#I#}oe|1$Ytq;TozMy6lf=fUv+J5qUem zG-!98jlgQpQr3zi^7#j$^GI&>_`q%P+wsGFCMrU3KTPG~PVu zGi(c*4X<}krfi3sm-jgC4RiEh_lEZ5`J6%;XX>7hn1H*XhvV z*Hq7_&OP6EC4{R?^$Vi9aE6p@?lNZRx2 zAjiMy+1pIb9K627+`A%9ee@KHuynbL@;;*GNI50HpfgLvBU=yM690dg5MNpi{SRdA z3C4cWaGvxM`tddcsCNgiyTA<>iRVDBHGlYeAGhyGj;Z){$a@~6ufBOhxi4wc(=PaC^ly_Y47am=>oQkUzQ?Cn>|T!AVcdnUb#d24dPQ*#&6NqXEluFtdNC%yVU z=ZVbcs?okU@+B$xhms&V=Sg5!*b1J0ijdQ$BDHBXcS@yojwgXl%cxo!t?3& z${GB6rb998Ym+iK26@c~myw!=9>2>sK|E}{htsUyx_mcm61w*e9!kM&TCWHbjTl@x zLJBOse5AR!dPL4T^8mysOmL%acW=lN@jG)#G-hwmgWDwj+!Pe!G6k?6$STv`-tsvF z*dAIgJf2Sh5~95lA3SI)iW0+S_N1@=?vct|{Uu!p@9SdCzU~s3RD6mV)aD2{;cR`1 z7!C@cU4q;HPN1=isp-^n6%p-&ST5vzj)Jq!E9L}u6OrZJ|E9y7V0}~G>HLS#rcb}b zH08Hb%G^Nj{@JIAJVtN#{dh{sDyQf5;2kxzf46E3fFGjMTc4$yiBP-8EFoky$Q3&m zy^r3xTBEQ7FelgkWUYB@+>Ly0RMSPA(c_O9>vREaZkaTK>kc1m4tq3WKHdCP7bG|6Wh{=bD@Lc5Z{e zCpY6py*FNgTOmSJUGFiax6Ma=9(aNDy!xSFLHEQ*QnTg~N`V?(luFGI1|ent%c#6{ z?9}`IQ7OCT`#!?-EJWgCXDqDCr9VAL2hL`NG@hvIwSI!i6yg1w~F1jMu-14ia6AJhfZyV4%Hzv(46<3w>AhYkf|5b*IV|?U|s{nun?oH z{I#T}Dov!4dB7VT)DVm~|4pBYTi}J(7NIE-=7k+>7R5#t(nmkKjK>=h#3zRf0~yrGFT9+(p(dpu%aK3JLDa}3AHB!Qu~TvOw#EBB-sO{j zWu%D^yDxy8$K6v8MB%}a!S|rSDQJrI4aDX9A+0f%zwXwHFOZ;Vtza9VP=3MKAi)Ug z6o>TkJu876(v!o8AP&V}6Ap!EHOLaMB#;({@zjood7JSkAgp)_!Mp%Qn3gaZGMLp( zV3aDJz`Uq9Sc}=7$e>8`Ee3v(+!AZ68IfEOr>8ymx70=Ny6)#}Q@nG$8d6wL6#ayq$*6l$XXtC+P*M{gCC%`0(jwlGwSarXQBL{j z5~bJ3lE84HDARmF3DN+BY|tl;@qsV!t*|F$!ccC6wlWbQyUzpeUXp9_4E;*v=ondQ>-7yR&f zqeXa!a*8yuI8kV3Fb*)&ut1O}ToMj0ME~R#Vwcr3gx;W*Zwnw$6SnLki8zIf3I;c! zmwpbJ&dM*(F(d`NZ2zNIby4)y3z?~{T?&YEnLa=zQN=+i8d8b6G-~Zf+DA>j%E2G=IDnS zea3rEjndWM;|1_O;Baj8?uflsIrz?;tGzhYHniN=YhM6xXvf)7Be17>-R-7adfthN z$MpDvcgL8rX8oo`=B$137{A+(>sDs{W)7+zVny&Kg)R$eM;Fu3?nExtgKf68rer;XkW?sXg7ysLqMFc1crwGwr0!*qgk?bsU=UpS8 zX71H?lY5xQa_GO-L0Cx}A<4}nf(xoC^>jYC>NAg>sC$0SU9Y%c6CT_qIomoFU+s)+ zzoQG(VC?|Qt`kb1T}0f~+~?Na=Kl3L8k4)tmu;JOm}$plf&~TDVJiy8l2Q3YU$W|M35ibRWEb-=p=6O0kQ3KZ{EGZ2+~I z4YV7Y@oqM6!yiD~8HvJ8^RW7ZI}h@?EEvjqfywgVJel93KG0~xeMeX#dbMx}BI{e+ zIbcL-OXVOyhzP}y2iSttk~x7=)^P3AJ~lmF?bLcUJs)kVPz~udqNf7w*83HmnE-<< zUte;ToJxYvc9jumS@wi1p4#FeBNe^fsW4Xx_qlw+c9FUK?z7OQ(*}?hbcoVz<{B+sokJfay5w@A;3^wJc{C|$g z?dP$)ZIrzEt=7ov4&#pCi*03WzQSs;0-0G-H8XuUY1p&a9`cm7p82^r#jHQd$7I`4 zv!q(D*Ac#(gKhh%)KUUs{5%VzD)hW^(ex^gniio1l&Rwl1hT1Qg<&6=B3PAkRirrJ ztB@K90@I2q{+ZI*wx*r76wZcz{(i|$DKko^M?Xpj^y&G8cIy3$SFVeD8(l^I`K{mM zXpRk8k-uZ8e?lm$X&_SbWtzb@o008!8g(#{%x9;P`yt8;7#b^(Cczn*T5rG`8&JO_ z^a|BfC9Hby3C`OIi)BtXfiau~PI$2+j8j9NrYh^A7s|H@)RlkbaI$RN27oGlqy3?X z1xLSkP2*ixg{Q$?W!1@PUuF%Cd^Mo49$Mm!sYIM94>b| zp`w|JkID-LkX99Y0{#mk+MY2*gC{f*+TO?HmPaLmMs|8^s_7679j!YFn1C(qaNpFNsx**Lbum@>&n~r`7+ykB2(a zSY6S5NBs*L-i3dMTkg~H9gMqYN3;mYh3Y&o4Ix=>J&Z*K{9f#pjMF&@On;HvZ;L< zK>iETp~fpVHQ-2K^|LGn&q%R(QAHY>59s@OQc(27rvaW5iIQ5{`vZxo_(1kIo)S0p zpa%gC9D_lgXHw0&pl`_KhEj6~DNR9b$bY!XjnMj+!)x9ycw#EwKg$sN@n8bj5TM#{-|EiA{Jyq@EO-ZgV}FM6&W8AAo%s9eqJvU4;z|RF z(3h9ur9vIYDnpoVX=qb@XhQY8ppaer&xY;fTm~S%_*1=`UhVseC2@($m91Z68C}Zu*2-8qbwiMEH5!bt4c%bO2a|Bk6^pyH%|3x>(+~< z_8X;#&R(&W&Dkj*YI%T(v*-4WfX2(aT_RJS!@we)X9mUPyqcGcF3La;`Nsvrf9(`M z5U&nV{jhP<45=m?CEtGaY%n@AnC#ka6l5vn)IizKQ(5wA^Eo5uDXIrroAwT|rZzS_ z3PvFou+t6NRj-Qv4^B6}-Pp8E_TfFTi*I@ALo%j4HoSgEW>0&(|1*wZ&#+iwVp1a5 zWCFdcRP%5UaMiON0!rSs+tm|%?eeYqdGfjZ%5IT>Phufv^5(-#8EF38EzPsb=ecQsR-@Ikb>c{amFS+C9&?tyfnkeNgZqZ9Zh6h5{?exnN3o`P zZr^%nzZ%Zx!-OqSJi@k9MT^v!>Q1cgi`2kmrW2s)B_ohBaQ^G%$oO|mK>CEkXf;Mg~owTSi;^7lDs`)x27%qSk`%$>%u4gw0Z!1>bQA$?atUqy^i?$V`_kvm_w#2BMRO03Cbd^dcO>#wK$w_gfwPEDgP~kPU@AdTYZmg zSW{b0wkp4GFtImmmm3!sTl2>3JYReK+=k+GLSMQvP%|^V|H!@l-J1FAM%DD_yLc@x zVD&}o_h<5!wMu=!T)btl^#21*K(fDLqwSjwc3s=;U3DBHw>aL}0WslgKNIuL_M1BC z7sJcM^zDI|aOptxhJ)8E553rP_~p(ci4I4HOpX=W99Ql=5nz6DeCMf$7N;xrp1H4g zHrMK$r``D`y9CVDPT`YujO(X_bR zFviTN+QztQm&uHSX||17hMoCUCyOUqmQS>-O0}%RHEnKeu)VRtE>Oq*jhaKWmSeDp zCU+HRQ7Q-|rQ(-v8-IRPpbsZ8Y6rSD9?Wn$6ur@{iF2;$8H)OFSj_6ZE*6M z)2T44)83Y6ZknCFw)>o$&G|U<3oQm0FWdd#u5#%a&XTH@praKCCmuh^E;1+aBD=(Y znO%}qR3EHVOIA^TuyRw}T8)3v9MaJ$-SKNaLU(G9o9Kk^U4P=k-$D_;Mv7m~E-5Cu zDJFU;Ci*EROMJ{)8qQi8P1_nz+nQupnr2v<740-H+G&xo!7^imRsII+{0%l?>b7C( zc9UD}C$~C8C>%T0;Uj)2yLd}qkDEZsE#v+1BD-YTeVeTEUF(hmnO`03uszi3aJa+d zNUqV*1&3pu#(&4_%})f|o~+(;YFhVnvDuknr?YN5&lQ@Ue`k0h*5YE3>7^mLt6m?X z9=}7&8&Vcme34q_RUl>l-}aI>tMHO3g;vQ=Sc!4c{$Qo!W46S~dlSXHiZs9MB_FJG z@7n3LSn0P|EwPeeWf)>>)S+*z)H9i|Gi|gtTi9(rV1Ho|yxlT*yVdv>>w$eXm0N8S zb?gGZvUgE)sNU?@wgFb=|CN{28Q>)!Hy@bWdhn|Gp*On@*X=tJ>UcEA;MlbN@gS!Y z4{cBS+MlY_KOM09%z*9LRQq!oJI{YGzR+xbvCQPs1TNySDR=wl0`y}(kzJ&0ol4}| z?~_G7iGN(XcJ?Rv^_4^Q7RS)9AS04=a(mV9IZI!A>VLz?yS@9%*Z*>O{ja)haFLcB2YNRh zY&SbpY<;*&?@02#qlsq6o|+x^v^r5}aPq0;sV2kIx9!dp8l8P)b?%A5`4pQAe%2SA z^?rz4d#TGt<|SRdK=GNEkBSv+J6UTw;vogIMm{Bc+UDrmgUi6y<@2s$Ls7* z^zAzNcF(C?^V8kC&xBi_{Un{swLG7=^Mca+Vz>SeL2E9xNir`VHl<5i{_x`VWnu0Y z(bKQ;Zx)}IBFDC9YkBNgVr9rk`;(1Mjlni|5ju%>ihdQTe>rrNR=R0Mdd+(J&3}3Z z^$vJTjG5t_nNig);~`U%1uN6)oo3N{%^&TxxT9t{t+2Yf)%x)Uo63#0zB+aus`hWU zJGiJiHj2>cSNU9gKG}S8)A$!n#{28nQGAm02%%WD12@$UHtaf7YYR&KE+)7m6gu0{SqU!CW`pgQvB*AMqXLz`t8(f zvDI&}HE6Mgkpz81rM;2Aq47rtllzvYUc1fG_n3EETD;w2>8oLNOUt@QVSiJ;(e}YM zyAB=uXB!-P)EpbOixj*1M@BA7U$@)fC(cIuo7a(IJwyW+ta%`8 z&CW~9-b>42e7j?jASFxX$Ka7kNwkHOY-#`EI)cYtkkYZ`z{1vpEr0rlI;;*)7#vBn zJ?d$G%z5weJnIv0_ne&8JGEea+SBCB3!Af9PUjj7&gWTPsBpSCu;+&?l}iHzPnp*A zSN}SAWKU@n!PEF}2ai&P;CZa2<)*pBN|Ua3_&%KnBBi)UJAADbjVe;(a_~g$)Sa=` z3pUUXHZTY_z*QE^4SyRPjj|1ma}7;;txPW)nBCuFe$C0^#Rkg<3acoEb&0~JRn@jt z)y_-9ept<+Zo6Z&0#+JfC4Lpb6Ta`8S<_#ysn9PTjOQJ!o|%-0JL*{y7ip^M9%O7a9yNP8(dhN$_0O ze7;R96iR$n{<}HFiW>8k3&K@`RKAZAT}sfGt`f9Lb!>%N&?@z@6`P)~*D%7>g0+8L zj|Ysj6L;xkEZ5^qb4An|DQKCO#9g{Ywt7Xj`bEoYpn5Yy7ki^A$+&H|NtlD_3j?!O zJ@W}8i+gI8_kYx^Vl}N}HEr^@*iLl+U)S|9S>eK^+O$V=0smmQBqn;g$^I`Q1^|eJ zd-mbJbG{DeAKG1rw!0W@_d}4%r7;7Unl#P69ltfzzJFK+FE3X8o8B@dyyeX%t!rDC zyrthxJJm?X&ymC;drP6A;>9ZI#i}J%TAXwr?$W!vSO4x_gS&h2mQPNGqt-?Vdd8Wy zCZPtV*>+|vl6kJZh0k`&VRfsyP1ccHZ4$TH4sErI-D01i<50KJFEvr}Lwh7n1f}yt4Ds6}+WWGj_+nUj4}460!dKS&>*G)_>8h{FIf(^{_Im zs#U&uiIrwc?N<&u?oLaYWoC~eV!afxekrrOF@MvI-ll)Bx}cKcQhhmYEhbs~ml*Zk-! zGApkfzFAcK!c|&|p>Q);$iB6J+ywl3$vkWIjf=G8F+Ll9RbdD>Pq!YZ*?KV4_|W*C!+BOm+$@g1Gd=cx z*YW2LC!(!Rj#`~6FgpFw_{@~y*=d_|FCET5+I1mZ?_#6g4}GgIRl?1PmZy%q0DqFX znOm_`jg-P^GDOzR_(^_IDmIp{Rc%_Kc6Y6M(+Uk8P2Wvgo*GMxe6ZEdFxOEkwz){# zouwVg4pPQ)5y~*v%`n%?FxSs8UrH<0l3}%E6e<~qN+u5_(}$ATP09SGWbtgP<+H6; zLtCtew%7znwgHmedky>d8V=W09e<0(;wNJ%tz477{ve9bN5%dmkyez7@05xIO2t8? z;*e5tSgAOoR2)?*jwuz#m5LKe#Yv^&lu~h8sW_uloK-5$DHZ3HiVI4`MWy0Wh^|aT ztXAd@xgyI%d|L5EPn#nem7LXI5HY(-wRMHs>?-xv6`KN9X($N2>&qJ|aet25f#y1K zj@uR#+ZPl&>Mf<5W!H#v)Qxl0i*wYEb6n!WSu%8%j6N!iKPpT-B~wqy%tbPHkt~wb zER)o%sy0|xZLmq*ZkxK@?y{QwWi^LV4aZxeAm^<9oMHpbm$sSWe>N8*l;TK@NyX=; z?WbI%ioJr=wOCJ-v86{rKhnq(w4pk&L1wH3lppS7yJE7g3~s`swk)U{UQ_6p5xEv>`)tbg<;mKVi6PKG^BMpyKVujrY)wl;ljZ8mRZK5u0)rfxZ=ZsoV# z+Hbo}sJ3mWwq4;i`@(Gwqw0=VHK3$xXrHvKC5i8h`7v_PaNl2cowf z%rZMv>3G=99)BR|Jgj>MtlsT%%gHQY~?fdfCcNzNGEU!X(!I;{ zhOSw)Wd3HaMWL2u>Q`1z6xLx{HsRW~;o5c|Hrn6b>fpZJu|Q;!p{4asl=O9!DWpW0 z?!PTaDStEkwoxWU^FZ^)gZX-gLQM{b*c}-+IGSm9EZpRHnC^*Lhm(G`r>bpFzuk2v z+U)G&&T~07=kMEI7_`1PXa2*`>Ps)-#ZxnS=jYDkr@X|k{oYmV7sP)VK-ns)H7nJ! zRn%)%Zpv2CxVl0!NL%aK^1f`Vo%W!e&PR)-?teZ@PcgS%YFo}Jfo8gaW_l_6^i%dN z@3rkV%rG!YlZ>+^lUB*}wPcnpnLm^)g0@@cXj#o}wVvH-b6eH6Qrqsmn*Dn0y2I}es>gosTE|D@J8BRz>36gPwWPg$`ndVDowzmj>0-eVKc2| zJFR8cuVvq_<51R4ZJi?!R(V{VI*)nhl$^`j@v)#*MV+jdh+nF0FJX^%eQ+r2OSWjko5yZ-348 z-kR&bU2aLL91W`+jmmY6%XLl04NS)k%x)U9sWhZ+Iizltpk|$*W^+r&_Lh#_qb>H2 zwm3wpI^GpYHh*bT$yNG#-WWRar2W03?qpbgTe#}G+06&y6$b-%9U3q`+~;_t)AHz3 zi(`GJB-v7jlke?M-PJpt<9H_8=6|fW<+;2)=L<|P%$Qva(z}!)lI-S}iqD(WKdu0O zWF$;5680q{1?yF(R;U%MSD#w3DP_Hem1g-Ct&E>6|2lNFOH6d$7%x?xQ9VW2Iw@@3 zl8^Z7>iX;I`RnTYFZ)P?nPG#OQG}6kgpo!w6JsN3t%-897r1gnV$CKR-r!sb(er0;*rtVp9`*YP!=VNUy)a<$FXMU-4k4#GC z=6c0%Y|DNUJ?p1c-}i{N^?%cqauA;Uj5y*(JisnE3wrtu{9_W+e*2+4Rd!J1zH#fT9~w$n6{Xh zjY#Grl7-twOSg?yBU`LTw%Fuq+2(55jj7p>sX3HuI^GheJfBwm=zl5U($|^0AtiP> z&EDJdZRzUoW;P#~+kCLb@lf`@!`Y5U!X1ysSsoj+IeyLj#I)l{mtCit9ZzRloq1+* z*3;&k=g#vFtS&@aUG&=d!>3i3LhNK-hO|O=eQsgr6)TdLd-)nsdurBvkxe?*tH!NV z>sYTIw^HMeG#k~l`hPbpr4rdw+V^RX?bd1Ew{20hux|!GDtX8*9APs_$2*m9JKRzhYCzS`AB0_f1-h>c6JL-B8=zRL9+L$u;7v zq`c*op1Yy0yP=-Dp}zYv9d44Ln`HD!Vf;y95+IodNM@drxu;~2s&1L8Zk4soI%}KF z#3tK`O?LB|_Vbz!ecFyKf{r|u&vdwpo}_=@{)L}S2Y>&a+IpX@vC?nQ@uO=Li=tcn zWzoH}RyBF0+MTuP$tyMfQnOrLtNACcQDC8+wtLAnWG*`QNX4s{xCpk^4Yt+`w$=}} zUgE-2GW3*;78J${3KKuc)K4<=kjyZDmNaWSMPg)MKMrCI8xS?Z-(>Ze&Qap58vx=2Rz3gdZ&iI-&RC7HQO z=6|k|MW?D|r>a%eHtVWwHkY^AUfyOGu){uJheOB~$ETwGC|vhBg}$=DHv*;o4L>_h z;^4w<>&S1$$&YEHRyaoOmyVIWTD4<^TJ~!7juo43tkY1_%-yKfyW`h%^c!i{nd#g! z-{vfBzbx(W*dx_0yGFl}ZoiRUzma~w(SH&hy^>+CWOP$9zA2gX>@@A!X;vwjS4tK& z8!c-#TE%X#j@@9Bu+=tUtKHZp`>{<9ZxoLCVuPr5&F7;VR}m^P`ukgdHXRYrk+rp6 z(h7o(E6Y31KW@hNi7eWu@x80_bdS*3}d6%KZ z*cQw2jaDvN)-GB$vzoTIHSF$b+fQwD=uvgNE>1oBmNIF8^mXq(@xXxo{#SyMDD!Wf zH++}2`9QSV!C~V=^CpMg_8xiQbbs{C?qdaek3ZBs5wq*$ZOc=xJ5RqdI@9ZLHr(*s zTmAEX_7?{9FOKZF)WoK<-xmL!TE4L2{H2qGh=2+CGGOZ0tIn)ct6#4^vvSk*bs8Bf zG)Gmn%6<|wuKLo`bf{8uEE1H2ECtOc#n%s= zmWoUJ&rTp7VyU~;XXkI-Mr;;A)BI)7_^YV;tW@(?QTJK7seir3Va)n0^E8 zu-!WS25=!SbMvjFz~#Q9-+w^2-$1Y5K)>H$iHj)7FiJA=kc>SflX%HAUNQ@k%!4G0 z^sScZTdg{_TX$@?$=YC>wZU#~oBiB2hbnc)eDP3L^HLAyCVd^Yd#Ue8_}R<3dvH;| z_3h5jmF0`=kRSI#zT{$Zwd&wXwaL}$gDW=;t<-EKZQh#Qx9i*#s({_oB zmOawYa{4H<)-AKvE3?)wTduU-l3|Zz6e}6WN+wm3X^mu-BAMTnESfben>DO_w5?OO z*(kTzD!15GD(ov24ud+5J>toUp(QdrrLTi@m-d$*{cOj$4;kTK&Hr}C7+bS?R34@WeRqRRznX2onqA6Q z_9{C}UWYCT0N_53oGUS6#l zyi)D*YW3iin>Q$-qIPNOZlx-GhTExP(G zx&|$}tlp|^46AL7%6A!;?=pGfWctL(?1R4f2Yri(uPh_JvMN=xE>*Lc*0i10v zw>ytTnjL?>>%=YnlO=kmyp2ys*qphnd$xbixe$x@F4W6kk&<<)E-Tea)~UO!+?2Ui;~UM7JG460mVX(s)^5_*$#HdI< z%WY|;nQok(-hzStf`P$;IQy=0GR)s+RAp;?!^$MX)^u!_nXA3|BYTUS&6Wk~Rx=x{ zZ>!lfsoHw$*nQe+|7okkV;x5y(U!)jeBK>v5|0`AO8Z>|BUQV;Em`;7NA&|QbPh%v z9vZef?0>fF$P?3}bymmfoQ^-SKjGncGS2SQknQP5d(M=boK-rWn>RS0Z+Ic!@M6B< zrCtuE7IwvN{jCR6&EkN!dDR#3@^X#p$O^TWYt%>&`$-mi#$*%Eqy-KrKt~86I%UQ)A zw69y@B4D*@#!9t-)#@25H+gK(_&ZI1Rjq~PqVm#Md(d8I(0(a*6zq|jm$%sm?R5w3 z^?wHK^_2?fNS5~cN`}6Y(Phc_vSbn{nFcPe-h9<9ebudEG^}GZY_d1lW^b_b+Gg*y z%^_CHF>#AHj9LG=Lw_kY#fqf;mFs>v|MTbw5=BK?*#7x2_ovT9M63K^ln9pSFN39j zwQ9pkwf@!W4J$WAsc2kVq3Nh3TkTRqou~VjQiz+eB1%PyUQQvA`*fQe z^qL&>o0j+4%bW}soQ#IdjEBrjDr`-w?aXf2n0MJ&L}*(^Xj>KRurAnP)2?aTu4&hx zYTuyh;I`GVS5%kirGW8}zAiNsyJFIQXAv;3_k7#G`a6Hk12gIeZ|fh5-*?#4o_|iP zO#j$bljBpmC;F{UzPCH|e(&ixhci(YXFc|vi?%pl^8c~+o=;J{-TUBg5-Ln4%m8yw z=pLpgPxs99G*qq6!|zMZndRg6dAYT6hzPp$%``AR?ko3Sxax%KoPTqja|~HSuIxjaHI>|)j|i>HQ{I#>>O~eP>Kv5N zJo5VM9_)KO^77C{EH{;%tL9DRtVnt$V2O?mSY$t~^4%IYN!_7R+*<)2G0A4PQM22K z>^7pi8CB~=19s7%f2A|L(iw|XrXrR3Mu_D`h_xlq))I*C3?z02(hBG{AAjf9VDf9Q ztICHefd2EyYe7eI7_9yY%b0u+z7P7(E-GRtFY-oU)Ur~m@tp5Pz+YO+3jwwp zhLdiNMC##6D{S`__;x9=U22~Qa!dp{Z+Me8yj_pIspqhm>2?Q| z<6!k>tGm;_0Lm)}%BP^HdU5oahMvp3b;j+)<3ErIhm?tLbx9A1z>&7a zmA(hdIHAnkiDbPA$v&jdxk@|Iu(CDq7iHdeh{!?cMF%~-X!k1q3`;P;5zeqg4_1jO zNr^_v3WRnUAqsOp1eCaFFq!ZilAZfpk02ZiluTwonTUSb;%*Ky5gn zHdg9Qm3s3KVHqN<2Y>u+2mJBxQsTSRo)_rI3v`YKk)uJb)&S}$Ou`4`je zGH!RbP#bI!1Dwb{S=5wo^k!X5lOy&35w{+XuQn&_HY8ruCXFeRpPEvt?WqHXv>Uqg z_oj>us?2_E)(L&~MSaeBBdrKm?UK(^)p7j3e&X0Jgu-yE3DHB+q43oRuIz)`?SI_t#D2&$Z3UZT0u=K zLcb|IB+rF^Mt|7X(I#<7SrYt9iR;!tKqqPPbdr5MelJ_Fk0zJa61DY5|X>)3NmB>{UdX;gM14^tyukQwi31F*9^BKGkj zcSxcNh0%q0%sw)<-Wk_K#GiH~lxq^tnUapGlMjWZ97R)~lWBLA>F= zcAYZkzKP~$idygsbN>k)WdxeVh$nOJ_u^k+3;Ml;SJ-Wct6hx82UJ~pm33gV<$O@UOCXhM-TVzv9)^Szq)*_Dm zY5O#%l!jvyxc94REWj}f;h6P=W9v%(X0~AKO5tXvc6j?1=99OcO4S`)elAVt^n0mj&h?N-iSAgLPFn$K6 z&%k^WSZ)IAcA;&%5I-j*&I#>%yd8VIoks%6BZ02=VCp@D?6bX!+cU| zi`c=9?DmN&4T|0iVj4i~D2O{_i~pufC_oaoAW3J#k{^Vn^dqT%o70Xf(+Ba4Cx2w- zI&;<)B70JoGeRTM4vr{)tB|<|nfpCYEy%zM{s3DrutGS%7Mt2Eszq+5k{GqLm*z-|G3F)$PZV;eBF0rLr9IRUJ_ z{bN5MF^K60vF}0LB_w{WEumDKIOa^cWleskNqI%2w(HYAXwttMGaAD(OH^4M`t0Vg zoaP1gepUI4ku0$HN$4<>o*CuG(g&>STd4xN`Lvr5Vw)s zHz+1KV3P5ftGMPWj$Fmjt4#dp!>~R~e*qXS0OKGq4FdB8r~=u?x9#KORRKg*fPKox zG3Dbdm64?~*AF>$3wFpRm*U4cCDaVr!{0!kDX~W!;6xS$M)d_pKLjzaLF`p!T!%Kk z-kwlNCXPFk2JOik$&?CB>VE*9wvV8VWDLvvY0H|kWFOY#^g|<2_Ws^&sv%*o_7uk4 zUBQ3E65L%Oe8duM;EBbO&kE@mz8jG~i|mS0UWvF1nI@y6dIhLvbTL;%Be0M;Xb8Um6HJpi;_iybT1C{TEV>lL909QnAg&$6zXk~}ki-MZq}RIS z%V^41GH5*K><&A zY`(l(A^sm|UHB+tBY#6qS$mkgTjNILv`sO<0|SiLw1;W-x{$ptbT3odeN$sqD6JG~ z0LHlxQ;E^s3oK*6x;xmmI~d<5CiaQ#+oXJVpU(oqF_r#N zlhGKGIjzsSL}b4S$vH!JhYFM*e)XCKL`I;Ej6fTiC#D}6Vp_6-Kf)4}tPqZ{L=_w{ zBAJs*t7J=c-BgI|rb9jz;#TWkvVsxDOr}CKQz6Jy$Wj-e0bmV4zXKR{0OKiOIt9!n zz)~`wc!jopA%A{aLY$V^D*_x90nYD!Z$hQeAQ4{q$HSP{ zu+6R-RxV0FmfJ`NOg0_vWb>bWE8S+Y9Ffhuc|@A!(&NjdG0!!!nNWF=#T`xhLlhlc z(7}{2GohN9P-G?)oniJ_?-AHNLchUi*kCla>P@YBbAP?bQg5;j$ZZ31e6xbstgv?| z932Yhdja`g;5sXz#$hz+aBqyX&sz%2z&C&!lsATmvnwO}MNuz&qR)evFCcc>6!*pu zzgCy9-;(&ynRLaF{Lzqd(V2RXNV`g=KPEDc+A1YP8%2WNK7g~s~ zr(t|O?SC0xFLU@C*@DX);YPM-%S!Qom8|7U>z1v|Z^C3%O8F-y#5Nigr#av>6JqOZ zni~{ygF7HH+u~jg{_Ji=VFvPw!M_lGazJC`)z4DL#ppVH_$8J)`O}pY>QwepB z#14B>1C^YsPw7&n9#^NWGpEm5GOD$i>y=r>j_l8doB>)dG^<*#T5z9rY>!sraY*2g zdlLB99R3tr@R}o>VvA3+B<;S^z5YuYyW%ieDJd@wb5qt*1RQ7P5XE7d;xME*3@v7a zF@Ku@wwamu7XecdFy{kHKCm|U+8TWE-C|<5*nY;(amLSi%9}jp?b^Yoor9xIn{?~DIZTNrrWiqpX$Tnyu+dO$|4~M^*Bk17>H*>^SSdzQG z(x1{LM2hUPZYy2qu7xAJ6K1fDX|NXAHGf5Rq{xmI+1-d#0jvt>Hv_|FU_1#-Cz)9C zQDXZj!S4kV_k!&geH|BloqhgfpTFycfEtCW!)@->nL@DoC?xT>PVsLi>U4ckR}lLAISi_~`)Rbb$RT z-|L5B0a$$v=9~N0@M>rvn+*{kxsiJXQPV-uYi%(Hl(B=R zxCTx9X)0kimDs0F8q+2JFr`$QQ-9xD(=Hp+t92P444LbxtXxg@h&tyXENi5j)W7rr z7Mf+15RpnxM2>R!9c;l-jZd5jd)mI@e83y6!VHlZ0BaU(+_Xwie;h#@y$P-n?M4=3>vHZ|4s%X9 zlXLblIcJc|?`8=Gxx#LisDGR*4v<{qOD7p>a?&O14U<39yQxVlr6}iuO$;^3$2Ivl zl8>YL41IlOz@8cOmx19jFn$E4kHCBbSZ)C8Yd_m-KYUa`j0)_Ejyl zrgn*-T4t%n>4o$E7ApK0^qewd#2`2FktC{07(Hl;xl6^qHN<@f@qZ;m!YfnaPAuu8 zHn~xk^23!nNv4fa>F*602eg@wELn%i>~>|&XWCRg`Tjtp`6 z`O37--ZHqHlmc6V{R(@ zpP!huv*pmN^`3|3lS2A4a0!}xv#bS?Z-cHhA8dDO6k|Nluy|%dujw=+oo2Mt?6#U7 zBi5nPPZNd`yYY>I?zHYT)1B68iLFM6ACM3SB=#wP$7Zo}QbJBjT=#;gA8>**<}L$w zfYmJs4b4TP8-JR72+b!!)Hh*t6BhHs7F%hGdqlHTs+2d5)Xmzo z=l1lYM8;Pt^Se3gx-I*rE~k;4$EDf#nC=(d`+_SC!T>Yq4lw`ujv=(mUFoscyes7f zNKZ4HiggxQ9wyJj+^v(X6c}WJOCF}l!;m}-&0`da^MA%t254i+1;!F!DgoxLz_Jxs z^M$s2A>J(^x+V5}g(F|#td*0sa#x;$x(N&8!6lAT2MgnC7PlY$Nd_8&(jvbL=r4P| z3!9tgd4Fw(9Ob-c(esnT?_mjka)doB`p$$*QpA`3T*hV#RkHJl{BI@?bt@Iyy})@U zxI9;C4u3h3=SuXsa%papYozBk+c4usqp8D0o5?1N^}g74UyS#QiGH!YEZ9*N>>QDh zBNEr+K&k+W1kUpor{cA6L*k>^Z6G zZ_#W*k#-B(&Zs8_0CrwY3(@*RjZMIG+-j}@mbEtP7O8EE6t5H!CBF6}a!0PfIW8qn z_0&_GhuN<*7#9fLYXG< zmNIE8lKkA9@=!(3ZWGyVRLwZ9$Tw8N;|?s=GG zlNZ08CD`O8Y-fpHtrD-46bhtwnSGj?P=DEzQ27am`!LB(m7;wGXlLT>lTgh|4B3pL zn^Em%lpfz)QDf&d`gS z+A5)LLd8J)ibZSr8xFK`LHJi_EuSnAo4g{Q`$Y}Nq6^8G9$jp;C2kan--jhsVSkB5 zwxny$EHTmuw6JH(CGEob9k+# z(R2E_+>1VY&3nbYZZl^UsIngz)--zM5(1N{v zPXWt%y|v8SwpN5c5fha{duM>7Gr-y9O_m5=N?7vy(3BUZ)KiAEDQo(eBjcVr z^SU$ZV`z51Gv^(hk$;cLOSFrWe<1}e#Mx??k*hryYU)?3%s+p|ZgK2s&t;nuK;z%~_N$R)4|{{ss`f9md)3>WBtz z@Y4-9!8{32AfP%ustf&pJ2u}4 z@!06LlK<>wSpIT6cCDoGnDvu3Fr%J&LYA+RpEbJic<)kd^a2|hNUp0i*Hy@z6`iwc z=U_xRieUYieh?VOfw59&n#0Yb2Fo4Xx^i?L%!NL>o8r_nVU(=MU(ZpzpX=v-xd&a3VTJMBTwkO=|lc4b~XA^J7G*3#?QjqLT} zpJoesy@aRPqFyiY|0F4qOAq-h1=>AfvM*|R9qE=g)|x;sV<~&WG<(93Jz-1EbAJ|K zXPHj^6=1po%!h#G5U^es*scrkK_M|HwD0nB?DBIK%E>~x>!2UC8%EjQrA56jP$WL6 z46plRMZv6s-p105`u~!O7kKPbn0TIgCZ5+T`9E2LEnMMGmgv?>@qZ(E=PkX+@Yp>{ z*?vrZmY|E{d2-)MD4ue_Qzq#Y+kZ8mY{*wN`cvhJ5T2rUP z+-tM!K&`{Rw!ISkikNsQvA+&-d=GFI`jLfxt|Jnv7oJRe%30hp*$?|nJr4Rn*gPEd zrid-v$j8#CE@^aUXv~;8HkXPk4v8PsCd`nD$LvX4!;(i_DR*?K1@^RUVSni_^%>R9 z%spsUi$1&6kh70Y#pl%P0~SREi!!8nM7m&~smpU+uZzoXWeK|GQ!z`-k_-e&^F>S6 zF-ywMy5v)#?%r$_4!W2r`YfrLC6U=>YR?@2+X3|JfMFdl9-psufO#*l>;=|$GTS>D z-t0>>``X8X9b>`H7ZUP?#DDe0k1B;O)8$rWodT;jLGkN3efWkyu8eb`B1zpPTXdGi z1U%2_w?ZtoE;|Y~kHv`<{2`X$#0udMOZ1g1)<`}mq)&sEIg43#UMb%J1xf2b@O>TF z%1n5AC`}KA^iWH1957%94EjsJa0wV^anmerKB2OlP+99FwmJ#EBY%+C5oo{5ciiPW zFNw%YB3Gx7YJpYGwxye3dm*8JMTHmqF&uvzp|kV^{35?u;3I|5SqeS-_RHZY(NX*%~5@Rc4EGS1SX)U+s(7A4xkv^37PxDR(KYT!;qleewO z8{Zc|>+=+2a3RvRxvbW-fC+Fv?o&@&_(@s54*H{2;*_28fqR z%}eEyT5l`R9R}E8pw9<}d|>PXrY>Nv1C}~qJ<7Ko<>QrnqJNTaUoUg4mpMNLlb?cJ zBSPv8EcD(iX>UHm>bJ=f{_u~rH#2k)eWAJh`;c)Gy2(k;ka3dBuV)KRa)tG5@&6`y z<}K|ATGC`SBeG^h{@CFja8((=NybO|!ZdwhNZ+!AQUS0EMlXK`n9cxmIk1!i>#)Q& zEO8sfW|?F2Jbyuzl0{P24>45%smIBs-GOys?g7`vKQ@Z>3r4Z*zT$G;(c|^6CvexM z!jra7aQTxg!30-0$r2T>5L+dAeCac$P5;Uwdu5S#*xbD1nNiW>1)eY|_L)Po&4}!> zqr2?dU3NOByft8DX8ktIaMy19MwlLI&3gz-ug!Yi*MGJr7_Xc!@5J_#LdOod^F5zz z=evp()D@^Cty4sYC6p(fx&Y?}KXQYgYe+#A z!d^hr(#_Vtb^o|v_-CHM-5pt{k7!sKxj8VZP#XP27jxbc`_37+PZNL1kWl7KoI#Uv z^~q(Xlyg|>O(bnVoqklE@miJHsmkh9Wq)_7)--W*^5BULeNn&+uJ@phJ^KTx_2EMc=hRQ5eoeur5l7|3XTS!8#F7cc; zslt@J&Yn_ArM4>5nzZQ;u#A1C%uAN6E=zWoWlcLb=OWz{=tT?sf7!BFFq<~+ziOb_ zw0UCljLYv}37&C<9V}4|N4!e%B7abNj;VfkD`oXY`JBOx%R^LA!vSp!F0+(ol0YU2 zbdu0c!an1DC-xH2*P9G$ZN}Xu(>0g*GGcjdupSoK4vX-QQsSf3-XU_d@tqxfvV-s1 z0Bb;$zb>MtAuVa+E?$LxVg1K#?4NTX;hP~YCFY1{+{jx0s0MNLC0)$ly4YeYt}uTj zeili%rcOMiOd3LxyYwjsY^h(#wEaZ-4RyvFTV@@SHGyTXH?L{q(#nE6bPIM8DGT`R zHgFZJZK^zLn~yyH7+dg>Cmdso8dr(;u_PNr(o)Hi%@i7C57qKhCih_HmIYKT%B78( zLL*XWL<^bSlQ9i8rqR~{LmhBmRNsHEwCq<}Pw;Ig_;|lB(eG7S z&q#0%hiIOwJ=j_?z>0x>12BJV0Q3N-3D5(aDq#I6vV9ccQ$EC$kNtwsaY5)j1js|c zb&F4(fS2OlFEvNr!*O3-X!w~w-{_;+S_N`Mw&*2m0c$;QXX0Tvx*1+Jx}ld$R`J(! z1UFU**KZ7qzZXF{=dj6R1wpfa8bGZj(hccf*bk%r?^ z06rliCPemoBF8~Sij7FI5iMpy=^KE(VGb)S*P8s`+kWuzQ$fV3Ap3NHV>-Z@A4uj0y3Q)7 z?J#^iSkkRMhem($RT*CU$4;{qYLd{3fZr+`FG4zU(X*F0$K~&23+A}OoovxXo;XR8 z7c3oGCNXJ5WsRu3#KmkF7!((I;36|1KSF7aP{j}=r)CT z#2h#Bdr;Kgpy(gAnC*txS|n~5j~_%6I`G8p>ZA%PxdTs`bELivrP)Z6CS$EKbDYW= zr?SVXoXzyYXFXc~`}{HiL7DJ8Wi+&k|C}WlS|xnW5>4>Le929jbS)#I*rk=-)5$L} z#{-|bzyyEOUA?E%+|wcVbm%?Z(t(A3=D@-zFpUE9Wnj4stdnBfq!^zP6H{V)pV-kS zc3u#Y7lf`?e5wytITO4^5ydVj05s|ILY|S7o+Bj5&2?7zcBuC0AL4z zJ`Wi3Jdba@k=ou!@tq1{r^4PTc65rJ+XBgLfv%HcY6A?aCznoNKY*KB^&ou5AN$L8 z+F#D0k7d8Txp|KFuRh2=&Up$auC3yaumvq#;RsvQwL-j`B^eV--!SH}FI2WKRDPT3 zzxRJS6@6TAj&YdNcFk!!a@vlbW*Epz8}`zsZv%!lU@S4xO8U3J@)lTkDQvqG_+BBg zS7pH-$1O0Ab*bR)Wz|_iY1DtujWS)PoYgkBK zhes4IEw$3BVENKch3Eb;9Az{dqv)XQmz=x6K{}y%bb998NiKhmC79$2=UAe$RpKzo zwgBmdWjVJZRCX~`Uc#JeS#MBu@<1nJAjN7;u^K5>qs2@IpjwGlEA?d-Lz%@`uQS!_ z%r9}vOWa!PW2^PSw<(Bi3VVNVkfS%qneRvD`?)Ips3|zD>U4*YT(J5g>;UWl;lmJ- z4aSH`Ze))vYD^aWo{Z^1VrNWoXYKKWp$YpeiFZPhPU6WAoGH!v)REA%1D5pHM8=#e z^OGj)K9>E-oKr{l(VDe4rN50I2Oua1JbmUfm;aq5_{7&i+ zWQ8XAsW7*J+z15+7&r<|nnDv&XhI7at@u?Xc2%iA0SqVLZqi%`y_?hvtl!19?_&Il zA92OczE$qnDtFci$vUB{KA5V76y(5C&YjiKaBK(RjekCmfWk%X$nUW@4w?IL&jx%2 zmtV&gRB(lLY|(L!_;sXD;M}p%FZQrZb>{TOs)#zTvG;U+q zZDyBmo!+!gZypAgVPO5~Z~N(wuM-gK1ok#>N1L~^Ku#9OU5yfI0@C*5oW)~kUorO; zpB;bPgTD_)RoYJ9-(qnR+QmsvyQuWy*RlnbUcy?oXqG4bA0>a+B+~25QKJ#9>^&lX z#2n4vW(Ox3yLgXi-Xq9+1bxrM(J6pU0sV1cI1Y?ALQFS8%rAlEC9u}}+3Nl9jRIn$ zz~18TXz_Oz2+0DW>!%OZ3mau8-F9&vtR8_}>Eu1!BL*@ z2U}Fe5jV0V!vg8hvg-=dD%p2TK7+Y|X&@Bk98ksp^BvQC$B^$B`kfIzHxgJQLBH+1 z2aF$p=>vaL)a43oxk9{5NR$cfuYw$}f}B@H$nTCE?eO|n zAuMNhc+RlOdHm;WK{-$OoGsenB`#t~9*Cr^%ML3xxnvVAd7IsBEt4)qp%>V}lr$4A z&4de?aG?{-ChR!^J4fhusSLYR#;*?3SBHPO-fpS4TWjRD8adwJO*DAhxA;1?_&Tro zkk@=%JA$c)kgXPaEq++|0>`~qK=`(Wd+54|a$aOfP}Es|bgw$5l!(nG<8CYCOQ?hk zy2S66q-WaXouMgBj?`vtTBj!cJCgAO&1}|YHEXk*wQF{G<67-xU4 zd&b#99>0MtDC7wn*rMw^@&7J)p^%+wc@=t| zA!x4v_6q0^0>eSi0r*L|?W7!k5J)@-wBPf0-1B#K`IBA#t}YSv0ai5E-EsB|Slv(1 zh@1l9Lw_7+ufg;1A=j6FrY)Y0qYr;RK`b75e%HIj<$q%fZgGX**rG=~aov1KQAh{8 z-C*=uWM|a!vJm%AqwBch5f40K^3EBxW~&y-N6~y#n-3LMI~~}0y}s6A_zsMxaML5L z`JKixY_iS>Y};h`E+J9pV=wh~lzKb==97Q(U7rJ~DOmJAa`X2xu(}iS_uYRW{1wEb zAT;6@H*!D}wFg9>x5Vsp#BSEdy|%^I;|Y&6i97U3)7s=(H07=<^{XyzfK2~l&3G7+ zxgX2Aq|ZKL$(g3_#_bN7l}WeLkgWIo*;&K=S1n}mHJ;O%3-j5BEx0hBeb}N}u6Pei zQY?~=F#+XNi0o8|{2=C*ffs)`6}4PY!&G@CsOE1B+2cg_IJJA6ZW(y9la_(khZ+x( zrhJ!qONgc1Z2cH)`xuNrQV@?N_FS3ck+-wbpRDwEZ4IEFz|Kg`zkM*R$0Dw;ioD2= z`syEjos79e#g3zKm+kcX#T%By7nY=4RdT*I<-RL*Z%A6NKD`Og_&a|r^SCx^Serep zT~ou&xl2Fme6CyX_uHo=2YG*ehGufmvk@@OIrS<=bnPq74@T;UW;RL2n$l9zu{>8@oI(}d1k=CaHTVP$rXw80(0`{GA=u+k`IyYjQj}) zqf9#fsnYyZAw^+m5wkEoV8`xJ`twG^S+jB4VS1@HSLlB&scnZ8KM+K8O6(8$ zj)#2bj{x#VfNMZOorDANQFl771gl>V?#+_sKj!sEVG*pEkuT1zmKVW?q4ON}be_8$ z{&BY8E=PErEt*;-{$C_TKGM2nyRZ`$*?LrdOY8n!^D0bn(F;s7{?n+|G^&wCHQLBj zI*-iQBQt-kcfJ9P#Trww#@q=koxu7?W_u*VkBEsQVtav~qrlJkSWG?^yROTrd^+pU zW8U@9Z}x)!C?+CCS4BPxj;a9BgCM3~6L9*7KQl&|~kEazH z(sMN#yO7LbM^+n}{X)0qFfV7076qI_MgxC)lJkEXMBk@rVR4adb;eLQv^3D!8a!DcA=Us6zM|IF6PMd@>Adsfaw7+*8)o|upSlL zj*9W4{=`v#`#xXCK40g4Uvj^%Ym1m_fP(LDO9AAR+TBRJ|Hme=Uk%5)y8{;m-^OJE|7l(h7E$HG1Z?Z-8T=6=VWT!}4&&+kt8D%e2^1CKC2RW@%)N?`oqAo(E zd7(mHsL&S-4fzDHPe6YZ7>)vCFEI52b2G3s1M5DKZJ!8lloO3|dxgwVA#+X%$SHxV zOGtIX1XI8C!1Xh9kz>~IFA$G|%7`vbv~;I|#;D$ZZ`Vc@9pWb&st z{EuwGDUR?XTlA7AKF*TNXR01Xd9}eI+pdy7Qo94kAzX2v1FD$Vao47)b|AO4Xf=QH zt8@;>&XF`@?N%GNz_Xl#1bvqCgT(ehg1?gy?_~CBe@C^yvn+rt3vj(rP*))^RqohP z2v%>0GWcc?KIcUPbIlcTiW4~~iTWX+ui4ar*k>SazdC-}lyE?qSWF~M+miQ_DHYn( z&akx6kn}fLM!71pi^|$cX16%kRB?ZDj=*<%>Ph7)sV2m-C3ogyNP-I;wx{2uzOq;M?oBld5 zTvZxB=uNG-c?4LF;?^hrw%fjVv7ERaWIrWwoRT=d1(GvoEhqP3hgTfa$d-=uhh z57FRbzZmGa80dWIPo9^$#sjIdu#+~ibRN70jyJ0qME)eCRM2p=sK=GRJa3(Wd-QD! ziXx61j%H?uq?pIQ#TFFvgtyqDHja2bOVX>5URpN6daaTD1oE5kDCd87MR28B(Z&I7 zjQ?C#Y5K#ERuj6G`MGdWja@eA+ckz8N@GKq>7~p3U2R#bv)=c!-SorH2NLH4?LGdE z9)IVJAo7gF)vusxV4!VV8ioG^G%624_zxIZ22~NoyvU1zQGJr=kNTM7cx-EET)r#5 zPL*)ZkvOVO`hX=L(WZaww51*~r+qM`cZFs=wPtRnvc4Iz+YC7c^c=i{wiC~&vcTtS zAuzSfs`z`xd6on7eiaQ&Q?Rsa*~-Kgv#f}4Z(*$i!R4f)mIG>;nn{SsMb8G?g7UdmLe$Qa5}D(n%sK5tPW!mZ_|!*O3fF%w0aFAc?oK?s2?BFn zNdt4pKkA%!bODIj24Z)BxIG~L7)ZDU62E|?8`k6^Yf7mmbTZe1%0c8qipdZmgKOXbb@(+wOuPa>6CBR z(n|tsL2#W3j5B}fc)M1!U5jkjqT89<93=oN0s4)=u#p*c?gp0Kz&a?m4a)Je-o#mN z`>en*D{x-nlUMkz*LM zsZGr)ejZy;vr3r97Ui!HM@n9crTaxoOM2T)vhAj&$?tzY6dYR2#zxHxBl5zCzF;Q5 z-xSz4=5*_ zS)o>b-|T-LaDKFbmx}^Ct)@_m6l&2z#x#ZjHq10gmQS!Q1==nJ;y>lYPr3b(kK>V# z^Ft8%A;{GpKz)Xt*Oy+4^~`P3Ee5arW7FuNv3O3K#_!Gt4DtSYwXpu|$=`Qz_#fDU zT^!*Dw&>9c@v-^nA&|ac@OWd9bz}0s)$ZI|Kq-G-d4ZwDD~yXqC0-tg z*u{zbB8WQb8@(OG><6(|K-?=3KZz!saVCzLlQyZ7OYJF7&8bb6v|3eqxjo~YGxJaw zeNTTbH*C!iFXst-Rf_!EtI`DuTf_V7Ck!App1@q;@n5q9S9rqLEYSw8SSx9eNrxB_ z>%mZ211W#Xl)i0R#ZMlnVQ^_6H4P-vK%xz#8<$NMY?DQQ6Bup+<2W#l1M^j2xeBbu z__kwwd{RJ63hWaC$ArMy8br1Rxef(UC9r>YRKr``p*RfNu4VS{3FtQKK*SYZ4MzIQ?+0yClR3G^mC|BJozSJdvZdEsGv0<~o=|5^sIo6mYif8o z@1V>GIre+!`2y3;7thjnd=-CyB^X~N9AJsQaKtLfL!tCJ^XGTOAgeXVA23gC>+FBv z3zL0+7&Jc&$cOvCfxm33<+f@$KEo%DdfWTtjy}1wSxPob zUHhceF1UR4W$6;seP}7QRQTIJ4kQya7Dv!Z)#7cRo3qZ)r%u0ejr4s)W!$sYS>Agc=g_^^ zvoh(EWw-W@gvbgh`Jqs^3mvs8#yMb|F_=P1bJv30wV-#I%OuAU>@%Vtw9-28HixN$ zq`wffI;>A5wkHz&5ubR(x95M$9QiV5PY~G?~tg@(k0g_Q(mDoFjZ9gI#tHBIddbP zb;6L{L*|UpZ`8*__RD|qp9NO32L_cr%*CT_hSqQ7^53%r8@a;wEU|x4vd3TgmGPfh zOqQpTmopcU_t?Rn#eH8)Gm9a!7&^Qv>I(8!-7acsfrD zhd<2{v~YyeEYUSDu~UC?P$sQo4o$3A%iiJgVba~7pD`$Ic!7q+UnVBaj1$Q>p)YXl zF?c-Sq6OQg(|1|7z`xM>e!K4-I(W7aJKTayo7DJRYc*~q^sgrMc8)DRo(A18lPac)py-m)j@(9h3gfb#ii@+%@M%jX-qD z+^=ot6sx-_H(9BH?$fG|*u#x{?;AB06n!fsW)O?5bHu%L#h0iOCJc#hR7sPXnjW`)1ILvkHIbfQxnwl`p4IFulppThu!FoOR z1J~E-45J3)F~l@!G53dBO10KfUt6g!emt0X$+v&;cYN`8wus0Uk?VkhIswDVG-v5y zr^Wr;dA!KKrBUbk(T(Pq9a!vVeO#G6{u`RG)}FYINcyHvUav{nOQlxY z((bs@KNvCwk<7QstSgr6qhV{NIXMG#Hae!e7bx9Hm5u*w>%lkFo*x1 zEg0qq-?K%xc;X{0$y9*!JAWzUcG_f}Hu-V08=HS|t>PUQ++tYEl~B!X6>?jJ-ey{F zR}rk-Oo!Yyjd9R!ng!-t^Vry}cO|yF5`2(P{4KFR6FZ)Xom)lZHE-7eA8I44kZbasF)VEuO}`tG zv4MZeJgmz)XwQC)thvR@c|p%YFX*2B`qgB?R%&6it@Q-t5to0LC3wUY-ermMxneKL z-T>)WrmZxnmyMG0<0dy4$0zR0OpaNVYMiNcLSwx3Ie-+|$!E;Qm1 zH}aH!)Y*XORy?LrAKQ(_4XNS}s}mYEiQAB*`;O!tXvzaBbuE!rVN2g+%h+Vg++@qz zWXs-U%lSZC$rM&1U+lFl*I7J=Ci2{~HCw{r7qbN=9APnA^qebBmt6OgRxC@(BYJi?FKIcmRZ7grM|e5ha|+VxOowar9Gj zOqnfqBs4D1MlWaWHzoeGB<)6%^TK~po>HmTY-z`B>Ca3V|_Li`mwKn=l zBlaTjmjZbqDer|@Xz#KEB@0P;d9>Z@H6Ly721!pb?fWMN*{D;#lhIgwwS&D(QP@Xm z`Y5E2Li?B@S38BZQ~GDX@C+DpU8Y=@`2}Kmfmn|R+Kva}dwq$$zVz5>lx4RTFm8_vjxRm zVL4lLh9mxOB~`)F0;YRk9U`j^kzZ80y(ZtPIKu&F7}i#fXqpX3vjJ^pX#Oz-s}Iqa zXboR&#%oH`nA4mWLN}=!gtmVMA%0#&+!fn<101~p&b4y#qR3StrzRksJ+qXQr{H?< z{;=?yFuXRJBZ|3^&!tfnLD5|xrdu7`PQ=~8=uZVjRN~Ljq#=9q9z5l>H8szbwhc+& zpv#!GWj2On?WMB!*>djEUQ@4I`|DG!1+RI``|CQik;k5)WQfCm$rgVMafC0~qQ^XO z8B5aTEBz6)nGKB{BH~Kz@$WSW9aQ3gI;q~8TxCo-kEM2#Y1eh>yOE4T z=FID+tZ&Zj2IZQ^yqp4h-E%mk4E&;zUcjalT1%1be$kt_=xy(pJNo6$&)(!`Z&#y;nuM&jl(W#gKLp%q=dq4Kbhs&R13+`}*b8OK@p7$MA#_ zO=26KRD>tbxKi$EQomZ#nsn)d>WmAf%%4X39OI?1oO*v6l97;^Uz-LC0p&e3k@ucW zgHQ9NAWQIRz7%AMCOBf3WI!st#qhO0rL3Ef&*1K+!A=!;&zMJ_Qq!kI`jlv&a;a(1 z1)B!t!1x51o&a+_u+#(VhhW=>VEk|(aX8SvL+IEcbRHLz$HlJRKxzm|Ki@AE$K9|q zU1ba({o{Y4=NU}Ey8Ym{H0>qluL@`(FFoVyTMj>uBY4XZ=5a)GE5%n?l3AH_&~GV} z>^94$t@0O4C^_sRxE86{ZeEp^sSLw2ur%}Y+s5t^pG!zzFON&5~2n z{tl1-i6ywh6MkZe?(oDG$&k0SdfEJyet3Ee>7Kvi`PRb7A8Ro(E;dEOs$$T_okp7YL{^kLR~omp#U zt(jRfVgNCV2#BI!AgBn65d|@jlwd@~ga~F4!GNGR)J+$`AMZLJJpaPAcDVN5*WMe< za2vs;bBO5BAuD!`)6uUc^mjFe0;BPh)ie`o&No;_oYs63e$J0L=V$xrPks)f%4C1` z&q{iSkl7)0JXAW@!A{$Zt0y}bQxC#-7J24~v#?El&KP;!BWjCx^i{u@;gHz7mbmL7 z@z-qZX3}j<(pD__lO^SLcxVYdzuZPX3PdA3@kfDVgvajT>{EX!UI`a1q{pb-!KijHuFlCu9Q1QUeg}i>V9*^) z&OTKFeI<92zXF&mfMqMNZUy)YG4VodTNgmC3!q*~?JuQtiIOQ%I^K9YFF<$ccj@>x zfj@hoF8Br&@%?u#gjEw9W`{cO^wq!qOP-G-<1nUtBsF=`7yAZ0oF4B?+PHg z0&GoUvPn!G39ugtppOSI#{(Qsh0c3WMlimpAI}eQP5T;u+hLxw4l`(J{Pn=#JQkm! zZG2vya=!>fdG6vb0!f~`^s|45?3|nYfsf+e5~12wi}HtFb%i^{(Hf@y>;XP=F=VR^ zX}6>8cC4LKR`iAIM}rL`PUHG8Q)8I9C)|?9SjQNAjf7Yuv2}>ZssO6f+urF-e+go~ z1UYu9o%N8ze_mX~`2oB2?RdmDm}cHvBEJZt&WNIG)G^bJ*m^u}+!BAEha|iXOT30B zJ;RbO=u$2jQ@>c!){yC6nT&TKnQhjrDo1t?p3{ftma)gM4qLt`SETVnu+$q`Ug|v* zi1zWs4+WBaJn0Z$_P6|vkD`h@_WLD7dB~}%rCLxbWsLS5=%ii<>z#IUMEB?+OaIQ17DBU{@ z)zROBBU&LMwYJEIf~Y~?=;^?ik7(=zQ`{*g{*)zQ!jL#+PkM+YpSGqv4@(_2r?m&C ze==ljux8HKvrg)=zdLenSabW}xp`}c@|Vjb^B0i2_8>ioUOY7g# zhBKkYGohwFGkZt8+-fbi;+NFKCAFxOBO+CUcf@ z60S)fK_dzvE@OWn@|1hjdH?92J~0*HvAaxh(;&W-OjvJCJc=h>aU_?8q-+RH-4vR3 z!IC~fXEf89g}SUtbM_l;PBZm)7eBX&z4ddAIJ~m4Y=z-u>vB$VT_Eb8%Q*r`zngT6 zyUbfYCQ_W^!pRY{vQn%1#GQnCf~&W>gRNXdS*JxNwdjAO7Ms*AmcR{RYzcfH?if@V z*&TzI0H5+B)+=qT-ejvcwZX@}!G|srGG#)?@gQd{Ty)&(zHqT+zuomzssPq}z1GO< zf~XR4^oTU3IyiPzA9st1Z)Os@!xEpNN#}IQYr<1DSyT7WX_ZKN6P___&uk0L8ntCl z8*(m(=6-)%% z#-B7KY||%RGbD|MC7-aT>~*A`)}_57)8Btm8E28q`rxeX+U!a?=XL1c<^0?RR{eR^ zaCNaqu=GX!S^i(^=FcH77uFAXiXQRAL!OdHJZXc6tkg}u%1_a|WIy&9t*i)Dl``Cy zf-vjXQADVcdKex17*ePiXKqZ=%iHw%LD| z-0VxO7u(m1=}!vglfv;M$k`4Z=`4R?C#3>PLDw)5Yauqp=Exz>sGsuaYpR%+Aof{s zT$v`m%brk$CGNE*O=yw_G$|u!>KK`})sep2p3&vVEDg)Lpvm6OM?E>%s8&_5tOM+J1Dc=br?ap6_o4e@V9C34(+~a>qR|{lC zZt|yU#WCrkjO{6+Y&5vkT63xSCj)kJ(~Cv}(r7>%4Ok9sq7&i~& zmaoA272uOW#AJ|di;CQ$qHg)yZ~4>r{F!_Hjvs-}T`;QbTzu|v3^t`VgNQD{@8YqU z#iPV{Ea;b{Jcq|zQf_wtw*r4?9?kB{)^rBFMBQ%UK`%+SoAkW9j3@6`D^C0Pe1ngr zxBcON*ra@EQN7|uI?uz^1$)X%O4rax4UN{&SPg&IY`hQj_kp1T7%P@*$~XBCn|y4mCFE)ewMJ}TBc>2HG1=_~~>GR&qd2dI)zq1A^`WhGa%I~4B_l{qFJBHN3eza-u*98<8 z7|>xFm&eon?xO2F@qTy7b)K}5FI(>>A5J!DmG@|r-!1ShNbL@A5I zRjm$JKwXQehdsanu3u6djueNZ#o<^n$LSve{X^~z`2~MqzQEn-*exV>3vJy}vRg_` ztL@WjdaasSt9E=>Igif2W>`E1)nRa{rRVztd#sWBJfe=vq8|mtw1C)4AZ`G}7oZ8< zNa9Iz(j8rL6~kUMeHoVa)sTKGgx%m;MP+pdXP>2VcG~|wAjrJ}pMV-}g{){L-4K=T zlRW8rFWC_{`5l$w6sN8z(kX{%)er7d?1Te!b1qY)LyB~0kq#^3 z$m_U9Kdv#X*BaMrOLR*U;+2TiCl-e&!=|^(rk=*e^=^TJf zweH28lyR7L-{>N~{G7H-tH+OFIa ztop%am=T@2L;y;-By-V*T(qGljaVo5l>C2tuzo#hIIcHdFq=+j&96+B?KbNuir)<& zj)-luLh^%zy5eWQFQWUrnVT|4huql$lT3+VVNqufG?Gh>h)eTb6C`rfBkHJ6^eKP# zr&bk+I|SkzK|(7?d=8RMn3Jc1Q-0V|-&xYW5$WH_jHjWQJ8fCBWcKRtoH1SQIrxA2 z#(FDYA?Ggi2<9NEfsoWJ*(;xOn#=B@9X#=6cgYT(^sKuqU0&|3c*Et~EwpkAt-6f6 z`f3e&P{YBookTil^fQI^m^5F*SQauu=_k#GJi>UDVt>OP3u6nuTNeDdn3$E?_WP3` zCDb-xUn8f7e3^WuBQMa|3ByRu;vs*=EpT)*j7MDlZJ()SC45h;_XB@1kNLjZE{Mgh z<>qnIUDVAJ-*lIB^Q4;vvV1rB7olQ;TZ}z}DbHZ42c*k9R_oQf1Yj43N4)`gtwCRF zu-9Cl@eQqiZ!z2g#;26&k=@)IZYe>meP;ZenmDJnz4RwHN~mUEdzFHo^kaV}{T!RT zou8n`>{`4THc0*Je%(I~VG+mX@7sn&-gJ*TqK-c8A2S3;Ssy_B*WiR|H1V7>->^>Z$)>T~j(xy_KR661j@YUvNmXPV_Pb;e!v)J;6& zE_v!EJ>Ve=knfi&+JhFg^ap>O%Fl%BH|$*XyWIi~a8b3KLCP6)wFz6zY3VC~elI*G zUI0wzV4|r6*8KqA8c1vnv~7}*4^-5BfBSuZy1|=i@OJcwo!_8%;(#lvZUTQEaQ^E} zqX3kgqHpQ^c3R1@gZ1r`S4=e`|q=tn*mbQCsRT$35p9X4HRQu}jS&GDqHj zdiftSDf8{BZ93PxsNLb}bsnIF1Lds=`D#X+FszunqxRgSKVUPQvlw?eOjBy}5uIg9 zZM~+$&#Q^EO4~g-xhjY{sbbl&o1$$N{dJ6{a`%!gEUJ#e{Ay)*K% zdsMM^^tew&{P%({eR zpFwl35r4OM}Dh7#(pcUV(HSqs!cK+Kme_36#6q?;EG;KkO_uK+k51}j#S8b(T zd-j)bbpszXa73-zjI;!!Ex}kzu%;!L4JQvx`tw%y)$}(L8%}?!!r5@r8HT^|B~JR; zw)&Glgw!UneUq53^JWgJ96!9BAK~IfgR9fH9{gDv?&_1w<5CgM;&MzD{lq(Fmp=A3 z9alib-*YA$F(zKnCl%O|^XZg+H1&rj?Y%Ai1D0_|oB5E=dS}Ys>daY-{ypoSo5$iZ zZRt`k;Igy{yHS7e*CrTOHVXb-lPMF-;c`~2=vDg6a3*uqq`YiUHJV(lwQ*FvQ2;h_ zk>xRsJf_h~J66fH>#v6DJ5j?~gR$9a+U+#AGL~yv>njq!=to@ivz7UgxBaMTxqVtr zUkG9@1UYU5I{Tr?Y;s9%HiADd8~*hG_K!^{3(Y3se;R)#S!nJlqCfk@tYu<*^l^KU z_#%74J|gk0IVnFp`H3avn%GpX^)r8J!#B0@o7(hKZT_jY{7_qesPSqcQ7vSX@T`z(7u(y#^fL+bOyYR!>#T-? zflAlzRw4NFCY+FO(nf6i?U-_gl^<=e?*DaNX+G<`g2m0N`mzkyjS2RiXHbP&hK#Z@s;b~{08u69-QQS z)VQ7${tg`NY=|w#hl3Y7^Yi_pS-AN)4*RX+Ud!GGuLQ>hf5nKx6=Jvj;s3^=eB)4k zw!41}Phv~YhHZa#%5pW&)@gNv1%FsP4tf@2Hkp>gCH zjy}V&XPkE81foBI7#e`F0hqcFwi$2}SZ~hNzY1cl!q(_dHu_UfMfRs6y2YDm@pk-_ zIs4{Sot_IhxB@lE&B8TRRJ#}=McT6jYeFfXk>%$U`>k}W_lWyyh&oF-} zJI$$2(6o`T^j&1e31{YJENh0yzJliLCUZL=X|?bF_4w~Rk3R=v$GPRjO^-ly$4%TL zklb;To^zK;yDKCQi>c;7`!0X_rkI&fIBFEmS1^d2a}_t; z;LlsA>!(LMENHzd2d3u;){+`kLhn34K<8$8Zi}xnYV;n>QQT}9d8v9 z-@4 zJL+qr_6PnVpr5aVs|A1Ug&tJBoY)t6h|crGMIMs#Jn173+5aIQ_f~vREwb2qgffpi zO*j`&8WHtgPf*Pz;Ji>IFBHuS#qzk0+D)Lp2@K`HSPo2ssCf{z+y#Huy8xdO5>rB3 zr5{=8N7YE}HB$PKKl8}n@j&R@4kZM8Jr^p!c@@$Kh`0)q&a^tR$Rnyw7~L!XFNc-m zAfsEG`2%EK!LoPga~>OWzp@9CH<72+zpP!jPSAP$bsd^axr@uPTju`^&2|19G$nzG z^-GS>?XV~hn^ljvt)+jjA?oXVP|nfW!)D~L89i*q4s+t0rDw&OtmY=GWfE8?0bb!p zRQTDZh2*r5`YyA7m(ksFrd#e94{+u~@lCnM!h4(}R@Z@-d1z)JG|i&uC(@X2XzUhk zT!ktA4aMHkZl;rVu1wzM70fp{7dAT#8$E8?0Zf_;m%bG0?Ww zhx{(2_6qH6=9!SJt-9>{;W_U@{~qM$ z7QsJ`zbu3vou+JXA>ysaMoVx4Hi{3tgyfc`7>W zAzJ4yKJ0%XS?4a@{fDf@O}-~cv3bc3${?bwqgBVb8R#KgJ3JmWQ%xz?HWn91%%b6V_wx4GwbvD z%o7iKNG|iFV;-{qSKcgBoaYGLHj8qbMKxpNUT=k|?|Xv#9HE=hA~RaF(}~^HYVK;; zxbg_o7w8OC!Nw1WsfjYLA}yy#>jopcngu9l+l8~fJSn}qu zlowR$S##PGEd5}3#s^*I21nNMknH`Mob70CpN8cw)Y*_<6tVN9{}>D^$GGb+6&&gR zCs1zsDzcBD1Qnr$RNEe0HFS-6wO6x0ih9a|Zt;tkmGjFk5 zu4=8tIE%>s09&573y~3jx-gI_40K%dao(7xxPti)!gDF8lW@s#YJR&0Dg_XZ){upn z`Ft;BzBWD$;W)kg*ym}1=qXQpS|EAKlkIVnZ;&gd7rq49lmjN!L@=9n*uK44eOds2 zPIF)kn2^lz)6VHdw`tS57ESwZNWVyDoU~@=b&pb?Jwd%8r9XTI}+%EPE&V9O4wcs!d7Bb|;FNPLUELhfRn@6O`OR||K ziSM5B77bs5NiIH4{UfZ~N$FdF1@7DVhkatUp|Rhsah2xyNoPV|aAGT+bUZkD8k$J*kdvtG@EYf%~M88pWWK##Phw0 zF9EiGKeFGC+M>4CN$6F73TBd0;df0jc;X4Mf>&_D*EflNuFw<%*v zjIrxAadk-ij?jcQB=MOhsoIoWL#1p$Qa72>)|%6w=rVdkGm8ybkIdP(wK*4Tx!2jH z>K>*zaK$I&ZS%ZjxyxMQi)MJ@OMJ-;PkO{t*5oEH5Gk%mSdqzp94~p{<)3F%K0sBC z7MGoLJJoG-yktSoMmvI zEbhB0zJN%0hbNwYqmxSY$@`I%A}qDSnRby#uQp`d(r3OSvuX_4McSOtbnbU{0NBTz z4Ep66=zQ{R5d8HTdQQV~QZnEvy2BG!c}nig@mGQDzn8a&6^EAS9QSFJql{{p(@t-6 zs$UC01Lr@Z3^K}~qYO66vDkjI{<+!kRBy~Pm`;SVW1c2|Gdt$Fpe8P;ZEL*AHQrRW zpS|0UF7aVXd>keI&iznO&>&d2x_#c^DtH>8|D3c&t`kP}sG@s??2*rMOWe_r_(Q=7 zFUZ76OVUnonL4!QdyJ*lW<9CF4@rpCfwn?#@>&2@EVOs1=w2z) zE_C#Yo#pdS$QM^2cSHZF1`*w`n{tAPJmVGh-6#5gNl;8xcRlwQ-JD)w&zQAj-q2>f56!L*&8ZK~J!xSD!j2KuKd<@CF_QI=rmgo} z?551okwc!MexCS{r=))l5x#7bn|xfTxFGkb1TH)2C6v{;YBTq5YfuZ;b0n>oKza$Z zm%w^|i4__K9l+cHEVaN|3-Ee>qTb)u%%xsT!Df8ZA44HJ`%2 z35h(3tye!_I?RnBWF(gIzIY4pF(0%v#5hDakzSJt6@C3p@}@?8TCXNJuQiO z6B64(#GSLp=OYPQh{U@gNzW|Fcj%NFU23-}?Esx#9GbC_$~=l>y>w*%wB*#0xwlz= zE4j=xu3QZFz-D!i*Ro=G6<_qkO}vUPdEzF`_mcU^9|;wgxwC86jmkW`D&OdOma~%q zJzg$2#xZ0ZL&q^}oGbg5KDYdYnLlBc`@ni1;HLtJQvtS41=*=^ErL!6nF*m|zmM}O z6chA#Ex<8=xp>;o-&U->ffhm+Ey{0ymOh<+3Ulz&<)h-e?xGt!@m+Vx4W4Y9o4nFn z@ld^}@*H(2M;&a7?Fan8T@((UavMuiYGg{y{xBTn`mwWW{jAzBtu{`pO$ESQ04#aH zng{T{AfhkGc3DVX7E;>+?Arq95jis=chvbh55oxZbWwhDigbZd{M(&@Rd7&$>>LRG zMddlIc7Nu@zwQ3lE0}0*FIRb9br)-DSD*79YiF?)Pb-(0|0B?9`~f zm|YHY*QS0Y0JphG*S9dFDhz#L!N#qcaVzUE?U;U(!7xf1hY2>UZZ@)VlPU(kCnetb z+a5^C2U6;UpS@p3Uy(9(0gj4)Am>3CLvFh-^kX|UE{C}$UVleq@ZDxk9m=$rxi@7wOV z6Kp?rL)giHg#vg!vd*8j?1H(bi#u)kk!w0Gg{F&zW<;b|$IZKjt;#xolWJJ!O2Chu z>MnQC#ig6IR^%OnzFV^1R%_Fj((D1LBD1M2*nEw&bOUQw2>wDvyinOT2azXzs2zUx z+cLT?fW>8PptBPu;4T*~b9}xI9@gpuEH3PaM~KUA5Zxz?S;xfQx5VWk@vrfOEokC% zThakt@)l#t8!B}ql-<66Sc|a#Kt@8dMnbbkLUTq!bIai6{;;C~zx=$MpJ=>*puFJD zT0Z$>1$%kHf>JM1)NtaHpOmtQRK2&mik$CS^$U0Kf&=B65xEkMZpN|AxMnlX8p}^Y z|G;U;HyPjQP5Z3o7RFK#YHbO{i)6$`xotxbxgm)9EVmc?(bwgF%ut}?lCQHJ8p{j! zg>GXJ^q@)(ls+>AB{2GiU(EH;*zZW(Q(b(GIpINY;;OKux{%}od&(g+wZWKHhNcgO zXKbP}FNbHHMYG!sInNBaZ&(idF04FY#W(i5U_{xqJfci_iB|E%Q(lr)JlTIEuT>}p zm&oX=b;@cT8&JM~tJzoFT^6v53n=9pq+ElRYp`-oi}UYYaeU=Xyz;i~kdZrN)Lwu4 zUVpkv%yfwz$0g1wczj@&$AZMM8a9u{G!f^2JD~hvpQ3L2kHf($VsQZG-vi4fusgj( zXL#bBUXn9B+5axTq*82O@#+5@|H8!lqmuZj zw6zJzHX&6nx7W+*9yQaWb`%CVufj&!fyKmoms=Qa{%tH~Su8I6>l4?l;9sz~46(Sp z9E*D%qAH&Fo`G&DsEQK1a%ZvZn z9|gOxxbWLptO4jB^5K6S4#|u74=c`xH$bYoVflRchL`BIoA`#8^4fvEc3`i6xzyW&>RV95abP?SOwWM%8L*rK z)^h+a2_Q-WYzIZ;K@l|-V4n)02mP2qKgR*3^BUwK8$1`vnX?d)GEKxe*gR|0MV@w# zIw6XF2lj%Rr8OQO=9rmnBOZIj& zXD^+9JIY4WN9b_qiW}tvFmMbkUyv>I61{R07kWuvxk5nAHOwV1VlgJPJYfVCWtU+ryEw>!kjxoxNRB8ETranukftXJ8!)!K*|>mB_YR zM(&nT2Zi5|8B{6ugxr^vQ`y0^g!g7mn2+Bz4 zijC(==rxtg7unvri#puIZ`~ywZqiD=%v1isU-4zh(7Z&aoYkpjbzEoBqORnFN{+yP z&+3p_9XhMSX1O@h%jkO`m`$MKAv+RTT#tX?$xnj>dIpZk=59hx6QuOYu^#^*tqg_bhAJjE1yh_3L&#U7F? zJZULkw#rTZ(Oc2YT|FJQD?fy)K5z#L-&w)z!ke~GAr$+td?-ABtK%dvp9Gc) zV66c70V#1nYO7R{l`86((0)uvA5t-gRE`d%b2ZE{vmOgC*~g)fZ`c%Z^S5JvN!R>O zLLLsTF|PI$Q>Jc$A;bE)*UBN{Y{Nw6=8f#m~QFJLwd^^ll6-UKO`g$32l#j z$iph?b&&ma5MAoal=?ab0-WW4P)T1Tm}h5ez@Ie`m7nT}4j4~PStEx%qjt)pYkgwY zFtNKWaWAy-pA88&$iyF}q;J;bijb6QCiNDXmZwQSk7QgxGMhD7cMaKh^f|>^Rz+}v zUFkcBoz^YXze`v8%Aog@E%%=De9<6Je4Z~E%OJ~v`ToEY{jssCv(T&Im!jHX`7JV9ALS*>Sr{G>1OSz&7k zB(M8X>(ur;esrBb^F!wyz?8ve=(GJy!zD>3e?6 zYMJA;(D_aXC!dRZD1AoPC9#>`cAyHV)YA5at|%a{f<{uc+(>%)q7CliUcO|5yR?cg zyX+>vCQ&@+_LMdTD^EF8tGHeJNkU!42UVPfbWlhKg?3O_2d4~PW74lN87>0jMPQl$ z<_TcA3anQFe#(!3IOS(M>r0;XrS2;2ca?NY5YrOmI45?#f`v`hqJ^A-9g+j#5g+I8 zd*YG3{HXH4=z*Y^QV?4Y;%$#v@eGA+e}8kA#)9q zRb$NF6OwZ$JohjQ$y)6Qx*{Y+5R#(hkgO7jHoA*f2_zeT-K9l**%dc=o?5Y*(+eEa zDz9i%B~}+C8_en=J}BZKc|sviDD(-1UFC+ruZ{ZMR>L?jegUQjCi7QJ6~>2GFnlnAd)e38iy4%sEAiIp+$jfv2nyV-S+nMC2+#)M;7tm`}_J zBzDRiw>~U?e%PFFT$|X2CiT(DheA`fV5w*5v_5KZ>8;kIcLZ6H@Y3}qP;wEhr47iPrAcH_LuyVNbzdP1?9Vhvf8E^|S!Xze}U+fQS3%8)|E; zAfGdpE)CM9LAx}IZGi@$ZvckPz_=NhP66{NVA%_-djY=NhuH07EAu7Ge5siL`%D0R zUCmrqJDy9O&tQDbUz}HTz{C9?=!m<&Jq6x>&f3W_-4v;xIC?)Bj7$cjlfl>|w_!j3JaztS`+3ZK z9<$s7)_VZ2kPsCT+e<(4r62WNVt+27w{uJ#nWw>4PQtE1I%am%3^$rdZNHI5UPFnV+0l?Z)hB zOU@xv?k9FyF{|5ytk`vZ03GPTa?*B)FS^7NAL2_c@uUwtWdD!+zEH7|Yag{!%63Zi zg}dPYm;w(t*ZHYO_JpEuHP~COFVKm9>nkY3R=sfpYHB9T*TO6>aBD*d{zybT64}~( z$@f9j5s|%CM(+q>-bx+M70#cq+Ig^eZa?lQV!U*IV8o1@EX z;n#f8TQ~7*zT~Z&?7x%0P%GM%i;?7$Nm(7{Qqs@W!e8{@C|3)AG9jN#=qD3@_K71T zCxQMXFl+_Jt;@eVGz1V00k$qF*(IfheeAhbzw*f;jFct$-6EHV%T>g9@aX!%2pduSoRIS8bE1{qH zG0*%QFM^zTF!lC%ETrC@&`lm!l*P2_1E(|k9-_YM3GQ-{V~YhTGoWP#tjwUf1lRk2p4#>62}7aL zSl}>Sa+piamitEQm0xvw6HE=O3 z_cl3PM7|hjiTvH5=wcA_BRF<*Slr97_*Wqb>vV~&p-J1qk_VWSLMFA9O#7fue__fv z%w+ayvsU5R{di6up8Je{6)(BR!GUaq(mxac%T zNab-#)nsvT)=f0%=1@6KA;&57IJKB%o&o(cZk>GTV6VxSX!5n~3Ltj{P%~otjF_(W zW~#j%YXY6s&}q6o7fvr6fqm8+P8TY_V<_k0p#jZl?aDvfVF0OrTOL3PJw)|9aiNE# zo+qv2%l=pS8=2xUR{*y&$|{?xIoRbicQH`MW!!cKX=l)O25aXg;om~_-$D(?fbke$ z|B#Iv*gs@106wlD#uc_Y6{mGs`8&Jjf41`%lxS6uhm_$FpMHB4 zr=P`QLes4M<&ociym`EW0pu0;t)PO-xc}@oyS)`7+$ek$QH~<2kK7xSV|w)~5AceM zBLg;Mz=jUkumP_6?Qyd2E>Bw6cbDIQ`5Ul|X{=)!{FpCs%-8l>PQI2?Tg3J)VtRv^ z*&ufGE1ZX5PvF&J<7hRc@SVXf^Js@obHpdQS{+k^#@5<@;+|{cd+CHhW8!W{(ltZ! zNLb1#B(=blw#%G;DlB8jlvx*?RfcE33Ca0v$-MwmjP{A<7i#9Zl?74Rx*U}`BWV_h z-t)xG0?B)xw3sieag$dEDen0!I?YE+Ic`!-g}L@X*W+L-hss9``G}z(G3+DPPAdlb zVqjPUjBA#EA0#~DM;!69-S#JM`%{InmT6y9T zfuxlut>w%9Kly#N;uNP^Y;q`j%&HRZqS|Drx|R=WxlnRVgKVbJzEEs4SLb~(>6=aL zMVpU*z_ea#&SNZ(fb}iH{yzB-V9S?~`4Xy8Wxo(epAa%9gpR9n=LjV4wfqHM)&t3V z4TzY8p`5OfVl`*)&uK$fM1gm z*QB;H0pytg>Y<$rC>nNKW#k&7QLVP2Qta+~J7X2(8?XtM(dQwy~8`H+zC+F6Hhq zB72PJ9wWAgyRcqj)|Z$KrHHW=IIqzV=36x>m^4 z3LV8F=W3W{nmrfF-R;m-HikyrgfaDhG#U9+5Vc(q-KUBfH^iPW$9)frKdw*M%Ovix zCcU>Lm(eK~jHwey+6a;U!I*JIo7rp2dTPvGWy`5Gx}9VVT^f~A8+%If1 zWR-o(uTzQnj9U!V0L9C9qwfhspLybY0?FsObn7lV>L&lDRD9$r+|Q)4RHGVmaBUD2 z6mvp=F$Xf{K*t=|7&p(`0rWe7VKp$W2BuPAE(Mm2z`7COKZV3kq3wd2yr8B|2iZ>t z(UacHq_?9&>D&*!rFijwf_S6DbsKE`Z|jPVvgUEvadl-d9>L)8$a5JOWnQA2JaL(q zKbU`40TS zb{ya@eTbJnws9pnuB0CO*dP1QHpCQV-Ce;DG z>l$U9UAoqD7uZpwsAe?Cl38q)NmxkSVo$9XmdSoc}iIyhvLV5h{tN% zdMUXnfLg7xe+r;~cl$BrK911<=Oy@ke9kQ1Yg~8Kw+jE$dNgu_AnHay^fvF9R%7fr zUEHiGz5`9TuSq->ob(<~{^(5EY)HLgO8Y{mx0^EVAeo(^Sz8R*d-ORqNbVz6$~zK% zP``l0!mw%%iHneLT;%_|NWA@H4v9-aiZb1fXVljP8#ZW-8?~l7n|Tzs3~Q|?&G>6?qCsKX6hz(#qQ3guzxvbH zy_u^4jst3Ew~q^nZekIMR*1x)B6>g(Gla!HbHuG7<6qbkYMI1aNYYwO@@+b0z>qo+ zp7xDN-=xcbxJYN7!LzF9>`P3}T{3qUD}EpUm(#jm4hYOwEp0GjLSmzRXr%N2lC*8ph9mwnc7!1FAzd+auQgwu@AV-Nkhtl6-gRQ+HXboBW`! zVuVwu&W0#E&8j@iMMFOYgZhP~XAH^1&^!#wJ<%~NXjYR{A!pHdT3YTJ~WoKjO$YWtL$o>DVYYR8n?IR(>d?;<#*2!HFtOxpfVAuqVn}Deim>Yp*H?Zyo zc&i`L>SufDO}_M|8hq^yzVtOYb4~7lSncmT0A*!I7B92rnOukr{%-e&o$^0s)l^UZ zaS&tGR3*PI&dlYNCTJv0%U6jiJw?}e;!01+HJ-G|LssA>KO;`h7f~nd$ZZpPSc8pmCu=wB^-YN395CL;SVdJ;D66Py)Zu%TM6JJn?Y@*e z;X~yq?YmWUmml*^?l>cL?uUNUWLBrDxO*N%U)F%&# zf2`NDz-(S2luW}=GQB*MECa@Kiv=c6s+i??daX&hTdS(z#O@pQV44dhWjdrxhnDHE zGOnU+2l{sIYjP(rcLGZtu+{=c`1dvZ2o%24)IqB#7xvu};>oU*l+&RyE)_vb+JWud^`=YUJ>;Zob zco=b~8q|L%R3rXHMg?Dxj`sSK2a{ z#Up1tw8gWW&=!xn#iN&0Xrl^kRH4UIxL1WbtB_xX(p4y3g*vM+A}X{_4Gn7Ct43SY zsE-=;QKLR;Xj7wgYSc=NTB)I54b5t3RztHIHB=A4Co2WD)u1d5^lPABgW77KS%W^& zprsn*Pe56TxGNENCE~6`)GB`wwMxXjiKs&&%1uOxNw`Z3om%vO7B$o&j}G7J&~G}l zU5B>oP>K$v=ukHuO3|Sd9qOZlP955=gJvB{*P-n?l&(Yl_0Xw@Ha+UBhn4D~O%H8) z^rRj-_0Xw@Ha)cIQCmHcmDQHUyT9E?HDQJInD)Og6o{pU9 zC_O#ZtD470z9Av>B9Ds3B{~5YVpa5_QR1SFWEYl2tHwpoQlvJx=y6F$&In~JE|DsB z(cls#$0b_HE?Qh-oEK<`h>gKT#e}MKToRZTExTPC!7favo?TM$oq|METp%P%0CrKa z3lqks;G#weWKLt3Xm)>LITO%6MIy_oMN<^XC{~e{hzo0`GBO#LIAl?(Q3<6c9v7xX znGRv30y!f|P@xy5Gg6nxF6g>QJ=z`>i+V;eol&gOQ93A#mZK8U5vV+wWpRl?mS}cg zw3=nnI4?=KXcg>&)<)}@vSidHCLV2%VIv)*MWbW%C_N?_I%9v8?836dYE|sQgj$pk zt7AePY8I_aofhG~9YtnH^P^0aM@_2S(DW)Zn)iY5A*G^=0No01N$h0JC*?p{LiCT1Bk{l^* z0(wcys;gyQrIW|73%=7aW6-hj(?!FCbu3)yRFUk0uG4?9e$lbgb<7`h%zbq_v`?pJ zw&WRHrg!spv>unu1-BQ?J17dKRqo%megsxLqHQg7hl1L7xC+dOgd@3|i01 z(zFVdl}}-vm7-u5))Ofj6q~~0U@CLiv`AdiSzJnI zzL`!MR^5N2s@y1}q9KQ$F&ktoa6dRZC{q6?zl$ncf7u8TBFN zBzImF&TBNT1{><1Xtkn!T2n6cYMpv@juA-ft+{{DlWH`HNr0>@8v}E$ z!3M~uWfO=nSWEzgWU^TSMiZ$f0}Jj_SS`8uN-5<@xLs*58%+Qs5dlb_m|RdyAu_kP zppZhelxal~(ME|WjFC)*CI%L(6KumA6k;veCgh1Nl+4f*Cl#=&#!HzFGr(XeMxJlS}qv5n=?8%9c~hTfW2Y-M1{WnVcgtcEF4 zwxfhXnjxPUNllOHax%7Ni4hrHC)o{|jE3jCzP0DOzO@(9aimmeG+6A63Qfe>2t`P_ z4$||Wd@0XK79w=gFw#a)vCUBkGMG4-O(h0KHnR!!i!eG!aUhf3PCA?tG4w)-Q9ge) zH%c}#;!Ly6VKJaI1*vB?@+k}!IuK5>p$tWFfz5&1D-D(r27IfuW?S=d2kf}mNzS@N z+6*IDU84LHetJI;2@YA%7j3YRuQ@T9&0uhT>o8di>{~~%v;SfwnZ{~jWRqB}Vx$qS zZ;e)?5&aiyw@C)HEzWAoW;KX6l8S$#_VFYfn4u-!YPXKS9r2DL;$xIlk}OdwVN^K6 z1kEawJ<}=(`czg+wv!x^h4q@s0i!3Rma=W8Y(~QzHY+1D@oX0rnHX85eCHh&li5iH zjzVWXI}K%&3?ofhOlGx6F0xrIOpDc?Wi4`29_v%JBcDbXkUdL6+cc8PA~b)*gAEuh zjn!7fEFz(>P%6T`iM&>c#F{N=2XWC{2YOsGG@v!*H*z$dJwaNLQR~VKvZ8rUGVvgo@Z`>B;!Ay66o?n^R`8IY(OWu;n@LC86Am z8YJhs%1yR8@`poT3JL7&j#PiiW|z=IX~ehKxTQ zG9*k&rvZ*8gUt>k24J%>sf|PjX9oCqpcBcAU}8x6v5;kO*bAM?i0>P-$(#x#%`{mU zT5|KOc|Zf1QZ2a*%@TD#hPft3K0^{I422A>xi+UVliiqSU>d0FmoI;0Xf};-7VIEC zpN*O+NKa=;&T6*DZfTCD6gn^h`g zrIBz!Vj-%dB$JBWI2?#D5y;SHD_;R+ky#FjbSuziB9R9gBJD&kQx;{iz$7V}t;ES7 zjg}mR2G&s|n3Vraq6vS{YRhG}MH_5n21g}Hj6s+q7(=z%oams103Bo+U=4~X{}CaF zU~HDbRdB40V;r60*}%pTpCMgEF<#0xSy`XOOZjAKWKyd+PhxpllnG*(OX4pYuOhRE zh1Ef2uv-g_&_HHnm-VTvnZ#6`NaGK>j|P!khvdW(lLhrvXOe%J(}I3bTg}K6%ZQ-(g~a?OU|Q?g?=EBf%FpwHbt^Hq(W#QQKFEq59R((F*I;J%k_AoyU21{N z#DZBKg=EfhkkHPUxNo*go^P;OSv|?bPi)NQl+*ZRfKKB3b`ruIU^u_?Uc#iFR?13Z z_Vz3X@)J*&#Yj>vc$g{E>L^6pmDYS>m07q~>98AVag>Q)JBaBqCehMb!1PCvWk8{| z2z85cSfqa(ryjaACc};VWC@UKD7GVi4Cw=tB@cOsPiH$wA5o5_#$z=xrpqw8A|@Pf zBu;B3A(S!+u<(4wq;gDWyvb%FLkgWLiEM!!tX!4JOqPj7U^+$FnAY~FMRtKQvP~n=kS4NaN~y>w8Idr{=sK~u5Q%&m zAF@e#G-2~~u8NSzCC#BdOcTU9x?@A_N??E2j0BAno8BAcAZk3(4}(h6FM4@>Q;T99hJssr$2pgR+SwhLNQp@d%nwkPtyewg`nrlL%YmMi6o)vtaLgLO-RKB#bn)3gaq*su` z&Ko9;Fy+yN%LfD862vN50v;K}5>~QgAaPeD9L@ykUa7!oE;^e@rjjgdNOXnPtUROD zjKR`5%Gc1ILci&X=1Ofv~*`-X4JO_7Cru8a&)0aC@b+~N}cUHN90Z;=#PHj=f9 zi3Cfe93u_+)Kzk6ifm7%Trz939%LRRIa|bCDiA5^Mr65Wv+~pkQ?`G>nJS?hr{NBi zz_AWwaI+B1L>@D03!~!qJc~4Foim*qOTqO%Yopi&C<5K+0&b=F1XE zqmZJmrm~VQb)~Gn8oGfeDW^-7ugaq->PB?lwctCQp*YKEARU4G*g6xokCda(=u7(_ zsq)1x$08}cG|c3jTWNoaI7T$vD3VliNv1)3N9LpgQgM^r%2H0RK@X;q`HgreU189a zfi6jqs_Ri(o=xJFOiowoNam0U)xxwQNrOyx9EZ{*rV@7e!;|dn#+4*%qD+&8C!MDn zuB7vbfhXCyfGg>oz+6e^uAC>?Hr$nT?y*UdonOfmrov(*P1b)rE7>yH3Q=cz%2XmT zDiX_9O?$s(CdHfEZPA?ufHG6wXZf+TUmY9XD+G{=sx+KOcgE43Js zWQR$-`6??JPD_8Tf!Z2LlADNG*o|Z&KoX}oJTvtsJ6(2Xqk&{zk|h?KWO_0)(WIf! zXs}T`wX`u^WJbda(i?J# znq2A}ND>cOVVdwZF&Ccvanw`&!G&>C!X?6@u(`2iJ4D<;FOy54 zU47BCmBdwI?wNG{BWaj(H-sspTN=iVG+Fsc#0T=}Qk$gR+&X}!6QwLujw!17BJIdF$>d~N#@eql(J(>$o9=yS8eYh( zl%{{_fhawJ#LPj`DP;LV;u&*9l6D?u$mnW?rqiT+tHW-$I`Wu5q&rO6zA;ua{P<&! zx-S1=&oG3*`G~?@fF~9I63_=0ZUXicLI{*r+PQ85=UKiGI1lKBz8#c0nf-$4b$1!M+09aV|! z5t+a@((dafz*7`oIk9cl$xbVGJ|z+Y=ffQ#a6VxX0_S51HvxM(Aq36`5^e(a96<=2 zhx9^#^LBTE^Eh1yoTutS;G9$41Y~8IWu$^=;$g%FWh^FB0Uq$kgnc+CT6VHb1+IV7 z7-q&qpfVYtw?>P0C>cWBEdp zOq1&7@@#r&M$ZKbO(P7DINj3ukit#kd@3O%u0wet zaUDbpiR*+|NL=T@RN|cSoX;5DCG2UUo5cBq&Q0QcD(5CqNg4FHnw!M=G|ElleC|Xg zm=KL*V=$aP|8Pm@Aw>obDO?h99^sORa|oA2?7dx*q~eldGkrA3C1Mlpl8ApzEs-cn zh~>$&h63t&S&)>kFEq%qJCpUGiQVOL8|R6&kT|2UyTp0UOe9fO8)>~PODZ5+Ff*0# zV;N?|MB*}0=d(mNNg^5M0)xB6`Q(gBsM$&m-$b$x%0eD3S*T|lWO1ZXCZ@-IV(M&X z5;s#0pb~DnaZ*kWG&@a|p6h>PTha5b2}XwnFO>{1S%#6`%atV;=aNa3NXox58+@}3 zzRoAW4Lm-Eh5P#R#&c1?zeLW7gg!wlwi(<+{D@hIBF!0c$>gxOiTGi%5b<+lA>v2E zZX(xdun_UXSs~)*vO>g<8L7x=+hoaTq9;pkBG;ogcaig9o14h>xXOP`5D%lb(8TYfRGh9BpH8oGv^CJMCLw;?foJQ`rwyz zMsmF`KxD#7yD>8*vhwe3<=gXzn?|QP%sA3&iFoPXWFztD$5?_B;(RTysvo|VqO&_!*b~M)5qoHdp zPS12R*qN@7x*voJsrxw{mGX5kKLn>zygNjyARZeLsq-{RrZyCkp0JupP$yDXc(jNa zj!5}>j-E+KCFKh(RI0LOk-jG(Tgo0rq8!~p5vhCAoNsVZDcW?+5n zCU!q>q++(@LQtk}Sr8+J*wvr(G$eyPyCLETdd6U*Z8pgw47n106OD*n0ozXIaD$9= zWS$?y+$GHX87385^BoqG%URf-8)8IwHzR*QpEv{NzfKd0m=9?o9%JCpo`_wR=zd&H z#Cl@=D3LZ(Z_T93$EF^Q`4Oir!(h*Fo;naYbK5NJaQOsAM}kXS^N-#cP+*EHv#|a8@GD7 zZKKFH5mvj!#LOzjU@I}?k{tmVe)5gWSaJ*`;MmAQ(MkpyeLKu_^wqpu)t=>A&N;o z279&eXvPPCtTe<3bfI67sgs_h*k$=rAz2)gxJ#E8eqNp)&0X^WGbgvOLcY^W*(FBj z6Ec~eOiLyji^cmF!gptk1hPOp|8Eu702*V2aHT1>yB53u8;BD#FeCiQ_Fy?w-reEa*JbK=(lcj16dfz+@G$r_Gsy>u6yv~@2Ir#XvJ57 zmj6*{^1YsJ%%#qn1DUnui-JDBd`<>et$8uG1K zG=TrBgU}=FR|_N$w+0)Tn2a(BN8^m?yF7k0kK2K`uZpe$BMefO(U%^3N#qNO=3)Mu zLcNAuskhK#*mf4rp4xk~`_}=U?0>~tl1WQ^vwWRJ<{lR%+D!h+QU`wzFaCA{3A6M? zR|(vst3vZ83|9AHOpWWBZ z!{>horT@RV$pY_xM^Ar0ukIec&K)Ba=h%pMx%%UOtM~Wt!;fUT$=tRN1qSSB|9#pi z)1oYT2k&Bg0ezv^EE{GuS!6{fvh60jLozqoV3x#VEaqZA=N(KU*|SV0d`m`zRMRh; zUP-A0FkmDm_<8m7=<{F02<88Mv-4J25!n_QWEL`UlFhH5SEzqS-~SJXA#5P)cw!N< z9EXjD9c~?dUV0C$#wz=-^0OW2cY8kFBo**3?k2NX3uUD7uI$}pRvY=Ad}tz5*q%L~ z_?n+rwI-D+Rf)i*rW}`s?9zw{o3m7FmTJQ;UhLAIUAphZr6)`EVK->mWdOSjViya` z>0p;H_TVy&eK&u7H!k0>)Hh7oES8$Za{jaEiYL8Sj4564C>;8bz&7f%KZ?z-qc9E0_9r2JX3WVOyVmz`dHa z!z#jomxi2Z?vX@mR_(Rr*>3|AC|0lguF;^HQ8YvKbH9!r{1cSb=)5RnpfwQqc!h0Y zTr9^Ewdid%t7P9j+e=HOHB(Og=dlI#t!dvj`=5VZ8NhF@-)Lm<2j1QJ{ke*&zw&HYwBJT_>&%1C4$3262hJ(pmdfW}6!K3loQt5XLi$~Wc zdVPOSjJ$`sVf>+#WZUdUF0M9Hg2=(w17|hWtlVhKBj>BR(+QK8Z(4cpKRb&g(r-0WFvDy_R`c#Gin5x{@F7b|YPL^JDN*}L`0*YKfwla_wgc4Bkj zk5^tT2I(Su42#gXKBQTa@pvVvr%~30)nUNgFh41DlG>lVo z>DS?0`n6J^(D19s@T4p+SX{x)jID_dsA$je)?UOE}DPd)_7LkJfCNBNLNQ+E2#>9W0=mRjq7u1NiNr;kZAG<8iojlhy}s zg|VpIWV!#w`t1;nnyjcUS&AA`Wlaw4J#*$MY_h59ZPLknIh8h@@U;I|yApqa69+dA z-3MoA`uTx-4`yIeYr05rHRdXUP1B_lh9);@x0_=JA?+xz3&-Sk0=)!^yvaTsXLSPZ z+d>;J7JS84z^jCGa{YiZH$HI#nVlH zxNV@-@qB0OZRmth(K34F{$(B19H*lnTB^$bYA^%MY?;-0d(|DV-oEW=pB}4o-3w#fs{Oh4Cm+@WdjF;AUtJGe+jK#dzYslJhn#59{8RwFt@Vg2 z0sZP>9%}v7>Jyh*%LKx}8FuH=!QNat*pK7<&Th!_&KDUjwR1zB;gXk-b`mI*UFznB z^tLv%gLkQ@w2f!e#jAhMz+>BfJf^6tKf0u?Ur5Ew3f$H<+Ma#ur4BgpLDJ?nwFF|R z#;~)H_7NDz@rQOi?+;2Y-5D-W&hfIpKp0HhXO%xY>WOh{`!b^Pg?6=pubZ#z-LoY{ z8K(4eVFGtij2IL$>J!X3vZ$KVdJSQD2bitC!cO8t530AXk@(xm16{|I5vpp*e;4=0D>b!ahp6sU>wIJ zAx(Ial_XLP#}SIz!yHP~5gq$#Jcat`*hUBc#{l0)^futZn_*+}M@a2hst_ z-FIz8lxsKbYSe$Beyr+WxBLBc?huaSq0FmN@0SnLu#oj?_WhnKAE7j_R_h+dUiAd_ ze3Ut_7(MBw>t8i_JmQ(x&z?Ix|A4=>Z}eAQ2RmBa-gnlf_7^exxA&_w^@JLE+mF8( zIVTX!Z2zjz@%u~IPW!*(WF0N2Z-*g29BpF2y03$DMdN?vRSo#virXPoY9qs@PM5wd zeNJts!--z+m4?^AlXaFa`V@LQoW8EBv;?-(FGIw_e=cZ@rDdlZ%@4Lw!zMec$1f`0jAoKJyR5$l ztlGQ&h{?$>U_0Jpr)+bi;(7{aC3h4g+Bm)^%r z=2P%%-HU?}Q+=k+Id>-nQO;+Evist{u&VG`wX0*L1Z*mNt`~m2>RS{{w?prSV&&L% zVz__b@Mf3*yDsYVX7o7pWY=?R8pn3uu32Z8`g}}A~Wdgkfb{6O@u&clTUdf;!A?+owpTJO& z7snP1pX}oJOh{h{{J=Bx9m16<;st*uan!XF*k53{Ksm32PK<>vkxR3L-n?XiDID!S zJg>d0KtGW|bcsD!NJ9lihzw$2?a>^+@#h)7=^>=Ogfv7*MKiw%6DUmM8->6~p<$rF zK|I5ET7fA%!(!2Wi-plH&fvJNzCh99b-lTUb)u5%gobsZtJi5nUSam@M0J1GrE@G- zb7WgY;28tQ8=~Gu?foS zLKdahV5#PrFTR`0ob0EeQ`d!Hs}Xc<_M76`7`GnvUTj;#mTEmd9y%i<8&=(e#;b7n zagW$;U5biOhaL-KGh@HO+yZ~xa+3N*k7qaMRjG`naL>AvZ&w}wlk3@O-yrQNKVU?d z?w3ZGFM1wp@VDO#%w)Z)JlQ%n0;TmzJz`g0{up@Z&5?Z_5MFy7>8m+D12aQ#i{#IT z7hzQqte^5MxN>FSZ<>*{>NTOtg0BskyXielqjx}u&W(Z)`+DapP1b)7J%QtQWgPy1 zKI{GC(ynKpBX7vi)NhuRz}7>?gl4Rpg1{8={okiroxpSuvZ>aqLlNkQKJxEc_1}Zh z?DNaoc>N}HU*A@Pmu~CZSRkqc+*Y4Uw>1}tL+ZZCJ99f&dP2G^?Z->+Fx-9jg_-YF zMzrtyTa#wdw-Dv}HSB+$aK{sqPe0$Vf?2OHq4e`Bi&VD4T7#ipU^>qbpTebjfrVP0 zp>PPtC3=qQ(>Pun2wW85uuF*G{a&scFnK8KAr$A2Xb?j$fng$pUPy;<>5f=|LwJUF zXj^EVRhpv@5n)2>r!Dz{&E26x+XUX)g{TqwXZ#eyPfFnFDRqBrwOMHu16MVwfzj+= zy{l%!c8qcVj(7I8nTLqjKm66L!#5E~`$rs^?sFe2kp7O9+7cg3`Ta*eI`O&UHMMHG znF+s&2K7HYWaIqHXmS4|2ftJuWqSYcsFT(NM$rF(r*DmPtfRtG2d>>!1qKuDA3g1g z9l<6%K6TC1n(%+_@Vv2amwtwr8g9OKT;CECRrtjAF-!l#tS9f1zNJ|J21`Ew>D?%{ zl#p+l-6JXw^N{?{hFupYq3ZHecTZLN5wKt4e@Cj1bVvpGzY`IW7v~xHo|3y^g_(81>@GALFseiTJi!qfdsSQzK><-1YUr z+9+bfo-gjEVh0#;_s96&`(Q8;k2a0)(%@W9F*V}rv>m9rV*2=oIX}T@6{}CKlMO)Q z6}J!lc>aGcpfaHNqr-<$gz`)Coqy({4$8%SOXs)1szSNDoxaOigl%Pc=E)5j>}Ddn zkezHb_$EUI$0p$dy}*O|$W{ zupYGP(f!UHnZk|=uumxL>zI%B+O7K|G+6A@S=g^TP9sTq4V=$SjER& zI=b^|4r&&2t)%hl8a)Mu2pqsM8qUD5371Y%a{PS&&u~S~rFXD;jd^|f%8v)3H+E;k zm@j`eVMdQVyXl+Kn(YO471)iVw;#tCEWd!I?F4q=8A^Qw3Js+~!vSxBn5E;CubatD zuU2I0wI+}x9YR38bwz)}R8xbMnFWxvN_ByRKc=z{qOukl~s zdDFi(LUH`6S1ljyggwL`X=AL`AJc98?E!z6lN~SuRonWjDP!meLWu)|sPMW52oEGSL= zs?YN7zr*Y`9?#n3rXYxE)`f3Vl%T6M>sL&F+5&?`tgLV1EA&~yx9N|AnVluJUNL|3 zhiAAg(Kbn)-58^p_*E6e-wMTka*zeg|iP4UX$W#rX(9Aj%?KiyoKEt z@Ewz?E>{W)La0c}t!Q^`F6N=6J=dx=Xuy;KI}7Y4usg@3b^<$c4M|;u)JI5#hNSLX zI>VPskBfqjd+`j%I|!+dz;13R^7?;q={=VB(xA8b3dCwH-780-#ahYS?!XKj^=LP@ znfRbVkih;N1EM%4RT79b0YiT-9j@Rwqc6wf0X*-uo*bV<3&d=yJ#+paeR3^<*r{nB z{rP0hIm9UK?_!;=&*>vah@*B>Z9$16^L%+9}l-~3l@KfU59RM zz%T9D%&YtL`w1s%1aWKz-_%#hZ0NTaMxbvSb2%ghF-o6olzrO*bC$kfq+D4wQeYg% z#t{M)0%LY_6nT5d1qx+KAytaJ*+N_gaf!&VB%Vvx$8zaDQ8V^l1w*0X zq{whGn&VAT$(zwU?@e*rbJ2hJ=P($(P4lpw2j&3%v>uyRwQfQ4CO14+BW)3iNN%LO zRHG7356IF#xYP&@DLHWutg}#X%GefD8YE#8pIY_9z=KBUP3@fPU2z!&(}mc>3alSe zhaR|}l8Q>E&TKd?c_Nn0z*8QO-W_i+`@_Ho(1#t(0tAL|3=ZU&8peOINJ!bs9}IE& z1)ME1%nlYP@^11M2)`I0E75k^kF)Io{a(b3-;5wOpse=Dx#uv118$i6R5^{2Ps{V( z&}=GJVrk`(756$}YEIj?rhHBd?6cDT>3d=EbwtGU*sePlmce$?b4OacUCJJ5|qdzL2gO!f^+azL|f$B(MQ|en|Zp^G58! zauImE3Z$`52VKcU&4%Qh^?p!<5I-bW@qTVCoT_DXeqk^Lqx&+vhxToL56#RN)9?AE z!7T)~64-|0rN+BCHWSj80`Wpe#);;u7MEeumhtEKaa#6teQ5jG`m1HIzM)4dkK0m# z<(Jg-e8>?q&Vqj=?dZ`FZ7_XFc^jX8eE}9FmH*k*@B$;0>Ho>Z!)B~YG7UYR7I#2T zX71{IdO3S7CG+{kh*S-HDD&@U`Fq$}E~~b@UR)qDWX&D>#mH1dn5!;jcA;q3PH ze|fMNUYOls)P#AFu=VWp?|yrE7d6XX+3UkE@z|DR-(P?Iu*za=+6*l>f8>}1m(HR8 zs-s|rfkGM~q>%y#aAeU4*i_AL>(r4;J9!HX6xds!f@806fjX|NR|=Q*Pv;mVY8EAG zrb*;(2d3U~hYh4DE%q zn?T_Vw?%_)ixIjVEl_mo?Rb7$MKYJZ6gK%DA(Ma3CuC}&(%h4yXN{hTj>>(svG$RN z@J-{uBYkds3CA&hQ{H)g7-F^Ym;PCJHvHe$n6rCXNFg}(vW^P#*P-)c)H!q({)r}i5( zKJS0*<1ZXhsJc0P!e$#=M4D#}9o~BdOd~&J_Vu!jm=^P=T`pK~9wVRso2k@i5LVFn z2f~6%**uhg{pQ$7`!HDfx2KkS>iZYKDaXu=@}$4NelM;~9d}IVK3qNaJ}I2;4PD;9#Ej%m9wBbUeccMB0L5 z&z4QChe{4_yQSy7O!Ut1J_l1~KS10W-fuzW7rhW+hSL*4SsKSgImd#J1U3*D!|{JA z8pJS@OW8wBhG7E3-H_g9)6RL-`yFa#yV#}m%0|H)B}6&jm}lZh@V+PT29`)ur6Mh>lXO)(r@GLkM=Jkix7k9~i3t7b3Q z&d7?;K{ihW(&9E3=WqBJzFFM=qx(l5Vxv$zNdIMNO+*5Q8jkGU1BOuo<2m+@*V5u95f~O0dBQnfUaQs;=P{pghSx65=aOqhgy(;wH71Fz+h`U1BYmwnK zYfxePZa!P#=*822@S3z6R$YI5XxP>tQdr(wB^Oi$c>Xr3k-`@E3{%G_yi4gPFi;?# z8UZH{;?k`!THyI`Epc2vTx^~<`k(#Gu@QPe1t;}rwPJFp$# zKUnFG+CIJB$4Q79qb_;*pI*$0c=6VupqD#ieiti+DglUXfGo|jOd>G=Ghkl9LU04&0?HyD4^b(G5#;&}& zsofj+(Ac+2Bgg!MF8QR#_kqEau$TTMzS8?H?9}qp>^_AhL$JU2bWGv>LwWGn&q6zC z=Y=Egd^TjWU3!QhHqL)@=R`+)9H@*7DS3N&HR?O=tCS5(E~Emd?U}4&XQaSa2zcXG zkEy()Dh6xZt(q+k=&;}%ciUbuq9cOMxc3p$n)_mzG`_p)Cy%Htw9m$?=ST0a4GrUy zV&{K485+hLR~ha7uuB?mYTn<=3qfrB<(7&{pThMf)VX=?)-r$8VM3QfOP|CefK2$L zL64k1j>ixNC(DkO*BXQ!;N*58b2pELX-rN{yU^H*gIuy!S#fJ84nDrr zMyx6Gfa3st0=d*DNMKKaAtG-dfuS7Z0yqxy7Z@Z^lr}k->z&+}OUnWU_TYHGm%w0w z=;|-^%?H+OF6YR4=gWNU@c}DfXJ3|PKCM0sw)1~wS;oE5uMzvcd}nxdGYO|CQ$Aid zJO34?gDK;#K6xael2f+H*Qbm`b*8)=*{=2Hu#%~DY|W%dm&ePaG7e!1xmi?jMN2uAfQE%o9-nb?^kPnF8y;p zn)!d#e>N}wEUFS!Hf?J7_SH2|ooUN%)mW`TgQk^rD%~27Wj@a0y2o)$Kr^d*(-(c4?qGGeF)6P7PuQ$Xk6XKVI9q-J=ff|itDm+Xdks_m z^gPA>-Ym4y^+jnVY$t*BlQ{Zod4}-8T$+EV<2Y1g_*BcKbCNk8NEDdL@oXBu?JmPb zM=vV$2zb-C)zr<5$GhV*yw|V%=NUr9*YXN4)eO8N@O8TP-0x)wS6{EOc5cw1sla9e z(GS2Go?JQu1N-&S-3R`|)-d1nyx-0FNFEFvMB4XMN&ZgayX8)yL|~f5IcEZ)@#3dF%rG?b~%lQ3E$1 zR?oJM8DO1&(q<3WeRSj+`fPUD`u#l%(UY?eRLlLV2JC_CgMWQI5PQhkH$NS$UX8`m zoW^YzOn;3jX-?0zyHo372hI1EtM5udPu$70a(VZ;Ev@v}p0% ztm4#A_M-pX@jothKIERepyj+@o1sB-PxZZ6kFDkAKASS;;3p_;UbXYBwGlAdc@cMd zj<|+3;=GI_mB;-DOW}EQ$-l~af!KutYpDbpI5rR&TGZ#awP+@!%>{Z1>>z*8N1(63 z?gB&HP!tg+q)LHN0%HWK-B4)IaqJ@J8M+MN7@*}C(obNhz;J;P9Agy%BL#|@#l{Ov z;;7Eyn55&F<}FZkR9YWi^)yk3G*NJx=#n&1hcwY*lNfH3xUE>Ut+>CyXn|UOTXBkz ziaslrIDQe%^L`;Td?DI4w-SHPFt@UhRufo5WT+#g_1#cpXeh9S$lxi^M`Y+K&|hG0 zfl7g*nRDlcaYQU(_=-!Hi=JFNh~t(3u561ipyD(vB)7|nyiq7DkzJJ(fUpg^Jb zTwj60Mb3r0AusrxDB_&(mUF^N&ZTm^CtT#7Fs^&C0)=V(9n7VFi@bk-qloW%Z@JPg z0k;0#aL+{^cVM31eO1ZQ)Q)w@_f3)-jq$)TX};>BPic2J@BDFZ%{RAV&oF;S(D^bC z#2xy+*8ukJ%>3s&pKM^$;`~=1hVSi%+kQ~AD9b#7X8y3Y`?--#G5IWL*J|BE_CSXI zO7%g1Eyp7W<_m^j3y*(^fCns?K7Z5NFYv<5f^RMd?>x*htQtRlMNSK* z<8)m5wZOgD&o4>#z2{woE!UEQP>(Z>(l{z$XAGkRYB}nXIc7x&6nPgn=gJoQaOn-$ z+0sU}ewsHIJ-L6hXaoPZ3=^B#>UE5ppNy!6l5jbpK(U%sbDowmiO!*a5PJTeHT zvHa|uGYx-Uq4CRKj9uJ10M@ts<-L)IRq%`D|5RGi>l_Tctgc46>mD|EW!^&!`9UzF zvPfk>F?(&eENj+@pj9|+E*sOQP0%>ZWMy+VG@jlEwqCaF*V@(DhJQuJ*0+XkMZqf^ z*KOM~F=wqz-qvZ!->C1(;k{Z{-i>gza@wSw+iHJfQ^7EXOS_5;eU%*JMTUWLj%))0 z92Fr@AyC7M_%cFZG|%v*n&Wq|99P71+$O4XL6mkuRObOJZPnR~5wBRyu6eyGj6`T# z)ws%*eN%Dpu}X6^@uD2-s8yG*jWDvUJ$|I_*Nx*4bn5CjuYY7qaGJDw(-D1XE}q@4 zelmae;ey9lnXi6Yb+2YN)~UbLGEJ4=!FrND8>{eZFR+uqt{g30IIb3XE3o)y2tWR1 z!>i>!*%?&51yCKq68DQc9NeAY1h?QCAb4Lb3*3Z&WGeN8SxP*Lb?65rE?}PjUNANF{#$``kJ)x3@G= zyb0eQ?YYX>7ZZ?iRw~UC2?YsE)mT6s%37_s-j!vqwYonnqlvP=+Y!RcZq=))qpbsb z)zMnQOB@&--UbI;o$GF&{)fi-4umG(E~sk(#kC!EwQKd>br2K?^k@2nY$4l}@UMj!U2rh89NDiuio#IbG z*LDJihb}3=!|#oV8`0m+#?==HCa!T^-K4%xDC#J&c#-(9W=TzM{baUMgHUEYV$RDXVPYQ3g-B1&6u6|G)NKys+IWR!U>zUd`tZ2k1tXt@ zvzx~+E2;;pYa+J2>r>hqb`+BCG&+&gh2@ZmLPX5r`UwzRsDi9Y;nqbMgW1e#n zyiEg_HDa5!)j9tlUtXfLJI^|3a{lEGHK+ox_!EY^km3w+#Uf)b$eSZ!Ehw8K?ecfB z4U$PLVkF)rP5Ls1Znuh6-evz#|9)EuPN;1#SP;?Ii%w|1(x`@{-A$B&PW`wp&l>C( zD7b#haGjJnwmxs-Tt8M0jYG;8e4kq-!5V5&;B$yc6wtxt-jbF9VyCbN1Xy4 zd|tlGici1RgzX1AD0acc7v$xpe>0r^nM~w|C6d&qhu*C?%vL2L=yw;oIkPDu- ze{VQdrL!Em1cOX&08x z1(%v8*rq01&%G|^>?zRq7C5sDS>-61kj+Ku;g=9y^!Wm=RslHT|!8H02+4!;P<&C(NNwLe8Gr&nnNE(2#(TPEl2s zYzP|1P2k`{Y6hZ81T0zSk(MYjS8tFkC;WK#<#AW3S_IwiKq_*Uqb+_f++LRp&4nap zGZVpxO#O~sydV)l+$P70bqhO9j9qt@tg!$A7wg4ylH=-50x7^vy9sxnHo~?lqlD<0 zo-DAp&^8o(LV6nnuHi}L2?H8QbGRz^r<|^PH@#siJ>q)NyuCtdF1>HPPA>*Tl?4F- z7caH9ly3WtX&K$l>-4VPUs zn3V4ANQ_9*F=!R;5&49sy0eQRhy%v#Q^QvjT%wj6JVHA5WV24$AV9#-NCTBsquxU@ zQT$Kv=@ijpBwB|A(^AP1BfHcN-bc+a6x@%RQI=)@VAPrrUW{31L7V&xQDz>*GOkTx zRAdz!{L*N1xKpEyR4}_R(pt(`DOuPPw!AaB+jmsa zPLP8e;?5am#h=k#Od!3@_U)4h8YV;Rv59C<`T%(4$$flr?ck{Jqo6X218SkL?uF`G zHTgwPp~aw5aa%v<;lVEc!!UXcC{NVG@DZt zfwLzZdBNEb3SW*A&rvr8k!!w^G;OGd!jT{|RW=hlS-i*n2?Z_z#~jNjCfhb^l77Wu zL=%rb{O-Bl*5KJ=U+RJ4&N199R#`u)lgkoMl_&Zm$GgH5 zkiJrOw|s$4srmct8nO2Z)N+K<(+H!@_e@16b3lMb@`~`aWD>($Wu*aRdP!v}`(cQ> zYtAO_NVUb(=;LQv8IL@dvZdQz+rP%DKfn1IsDode4%O)urLla=oXdb?n~!rn<4R#E zmJ~>by@@YVb!wMX6rN?!g~gq721^9JE-lm3VX7yCDL>tr19V<+;dAHsviY^ay+Jd~ zAs&Fo8}hkS&Z~j*?pFgi5@TE8w8w9s!b_aEi!RzQoR`0nO;nq)59&!g!u;I+xo%N^ z+?%tV1<_i$--5~^*qYGgMco<-phi*XpF!Lp5)E?6*-Rm!e$9FDI?ZY4GQPDsZp;+U zdSSRdp}*=p#tUs^n&>DME_fCm7aMm+YRv%zh|8m0vojS|F%hiz=O1Q9PjvZ3MEP9C zUZY7#yK)`ff6mw65iY#X@7zn$wg@-;Tt?Sxgr_?95&cxNYVk;3uRLKeKD`ADhkYjF zb+C<^rwQ_hZTjPw(1jWF0w3;7dcaowv&*>B^ZQWO_-OVJmmN;A{V}r&u5*5xm})iv zuoD+j(R%$?onN?&0eTLJs1@~2FN)2dOZ7#YNu04|ZjeDSsg>yvnO`kZc+{-aM*?>tE zIGKVIaXZ``GR2aPa^lm3(np9TYZ#^N3CbEcZzad$!5?g9`W~?3$515 zYeFv5J16dgFFpSjQ;GQ>Itx&}{}sdAT}ChFXt+>JMZWgWMEiUR;#V^+-JAw^U4pP+ z`t9ut;6A%vC%ak%)aWmXelR9rb* zc>tsoMzp_4v+enW^j4DhIkKfT%M2Edgz`zxO^i`JZ)oJT8qq0V$rxp@UN^^6nS0Qd zzo3=3ytjs6c@i|gcjKR&FEtBP*?+s!GZcRIx>?$`JQl$CY~4z(yS;oXYStbg97~Ly zBciWt;5~NCfpF`y)Wn#ZY7*t*zY(}GlJ;6c1H4?YH8Q`1eKG8;0R8R@@PJ#1JJRnw zc0I%vjDS{3;b+C2_RS!D`yAPc<;KdAFT5t#nYiOxp^1~eANO2r47v~G7fAI14 zb{#!o!JNW*Pi~7PdM5Iv8Qx(Z^m6H+(_voq$NB&Ar$62pIlc#t#Gc5<}+Nm|XV(7{OK^qp5-uThhff zA9Yt9o?Er^<$M`mSw&!jpz$ff>z{Iu+|Fr6?s&!phNRb1+Myl{B4y=z$D8lZPPQ)N zvk$@#A08PwR~F~@p3hJ2B)cdsR<0eALnm=Wd%vF(CvQKo1U0Vs&va@a(ymc1Q_ zmu#%r)z!ue!7@+m4gVQ%0ePkZxhYPExTD}=3@4gFD_$j;qf;LM!`~C%y zBF3~mpu}HEhd)e_YW2IUP@$|*IV|Vzcrj*e)1Xg0VfbrK9o{J4m6&L#a@4IIf?Ctp z7LniUf4<(Sd6q3)Y?rTx=WPt8GFdrJw2S8ErLIhR~gQqNg`0+Z{N`Xa#o@% zZ?@CHAp6QKyNfF6&Y}3~^(zsG!Qv%{FG??_V+Z?h<|6(_UsG*$*H6C1Z^L`JKX|P% zKVT-tm@o`N0YOwSPpD|y>9`E+vc{lzu4iu>K)E{J$EDWaK%RQ5SM8xDOHFIzK$**& z=jVJVfe6{n>QhAH2El}#)!_3Q;j~q`yvLm{Y+8WFLH|HA`sUz7h@o9vRv`a_5Ts{c zu8QM_$b@h8Nv|Z@oU7~K^jRYlv`yjxjIC+MuxonNKAZf_;vD&Pz!sj<=J@h=HH+JNxyRf`+7rk`c|dN~+ajWG zxE3Rsz)My*&ZAZXd_|c?&$?H@>h<-%0_rxHuIlE52JC4~{YMl)>coAbs@(7xwmhJs zwdT4NL;HOujq&h$^Yh?n-pJ4GZWehNAfl1<1TpCX8Oeu@lYzP7v81^haP7I1&|_qYJdi}Yi59A>t+jLRt?Iu=y1a3~HM zN%++TTt4+#R(Al8(s=7@;Dd*Wq1I)Dfp90G2!mJA#`SfIoS5OuTtvl8L(-s^z2(0Y z^NFicwCg?t@yzMbUpmmwDv4eI3b=#D)QWJq&uuZ69-R-y8HlF;me*-eYy-gcQ_GE2 zl@6tGM{UbfO^RSEuifWW`N7$9ir(zCL2m2BOBl%A%VW{Q&6f+P!W1~Mv@+l~VF z38gP~aciQ&{13!W%Tp8xY)IaiV2)SzzU^&qy^X;xGWI9XhqbYaFysrMH`W(e5sbIK z-c(uPTVm2)3uw|>HEYdMP}eX|8G8G>1K?f0(Oh;iJs8D3S1G;DQ@+_Iz10r^pvz9) z2cwARD*4xWnm19px8vkD^r5%#9pF8h<6%AY+41pB+xxtUsqtkTP-kJF%p(`OEByL> ztz2%rea$z%eLgFB6fjSc%S|$;<4PVLHK$fgq*E*kiIl~G78i>~idKh*FCu_voQ4Zh z#0r@3MP4&=xq5s_d>VXo$ZhAFxVw7!?Wkuftml0&B&kL2bGg6@Cc9J_l1v&@@;*r# zbnreH=@lanzhqAuB=9YiR=l4O+%X>p|#2sf9@`xR0ZE~3% zXLa(y9cO)V`W@%5J*}woZ7@!A> zCJc6_4N?Gqx4}D*_q&6a_c-3qzl2^D$N^SxXTqS--)+(NYj|69WV>@{yJ`nAe|b;h z{jBBv%;)`FA@tfR^co@b`cvptiTq8T9AE>#eFVSJfZyJ`PZ)el9uy`1z36X)XUb!W zE&*SIQ3IVHts+@U(?H!o)gdm6gcFL_gAV~v`=I+cU{hApDziAWTc46T8<_~Y>6?&l zbjC*FE_m9~tcUxvWo(;e7h~HRqZ^|``bG*p@Ya|gh-yzJyvw)Z?u%M9+x|^dZ5P{o z_N!WrjJaijsQ#R1S|fQBB#LJaZ!sRb@ev@SMA_wz3rcIhDX%PByZ^vP! zj(ifY)vjX%L%xfapn3E*2ZdM?mDO}YzPuJ2ss>6o%w;S=OhK$bkL8eR8Fpm{fX>$4 zRavh$1}vD>4Brqu^6}9z0n`WRX|VOl?=wT>zzL2Sl8xdfq04>bJM;&xhz)|(t3jt2 zcAmzqu*(L1@Gh&)OrBoud}147XZ#7RG+V)bl6S`bIuX8hXk{xnWl);|^m1(v2T9Q318XR8)gJYJE!XsE|oq~ zh^h}qDyMo2nMIjy2B-5XltOuHEP43)+5TZK=j?$$>L=gSb_U8-4v}8M;v2e-aS+Rk zuQ@>r8*0$mNNGD7K$14)Pqdn*>Pu9gHswV`-x>R)KPSmgnT5%Ju`6#Wn@f?)d$Ka{8b#dz z`V6nMg<1sa3Xk0g`ULAv{et)WijrQ18KtFb4$_1L$qWF=_bQTd-FHV)w$+VnKGosmg(+#9UVY-==`R?Rk(hd$o9$*9IjQ#7&`$0ie@eIkWk_OvG z1Q=-7G<=2#BD`#w2>L}N@@5dTMVvN6lqlRDyTU-x{wgPu-1m8_5m7fm#1u~V8`dJB zg`f`)DhPg~n7G29xXmHwSZ|VZ=QvOEwE?;6iTHlCTr1M?&y?^shh^*0TUyc0bf%xBVY(w)~*@hR7;~r5l@RASY z0bdZrvEh~ zQm{Z`Fu=Y0)kI~;)X##To@fC>d`JVk^sSFx7>s-$2>H2%I%7TxMf;3sszkX5_g`?< z1&!KKCKE@RyzjS0IR`IcOUVl#O>!d5PZLi$PW_tf_tpi-cS`yAhqQ^i;u2OyDL|M}k8K31+=E5>N>HE3A3O-|L-x zXpf~~K-MdMGt#s%RUir4itz>lEFWQ0HzhiqaR?;V7>1V+KLj#hj4gIS@wX9li%Uh| zXF)RU%f>0&h68`GvBDq*#}^w_Ekj)qTwh0`*BxLb)MG=E3+`nBWq27Aic zsOpt`(Ivi-u61Ltg;UFq6Se91ihidPN!pv?ujCX-^qPvFAntBH11Jp0R4GNa2#^TE zLWxz8MX^YduxXaur2jrgeVr7Zur#E1FLl6G!1*WR2=8$qWrbKET|5FyfG>25WTOc> zo+QBu_LOfj;D4~{23#s`gC8||GPe!g2dw2*3X?RaJA%^6p!dHGktQVRX!(HCBL+$r zZd5vu31*L43=et}ODv`Lvix+M(XV9nF-Jqhvn1Tr0{1ptB1Z7B+AcrPc> zO{G*(((}=?#@A0D^<&)wSwACD4s>ati4ejr5H>|q37H0x!EO}C!1rdS zi@?R5xyJuaJwFJ;gAbI}K*hovvwR=m46Esiws>R4mx&1*($*ZUS*H#N&wCzxP4Qb^ zU@i!XPa#08ZM&gwOJR*xu$yzFp_okR-^-CmRrzVE_e$Xc6R;(QgP6%b*(a_~nuCv6 z#827ZtwZWcf>_C)9v$+F|M3rh1F#i{>xtc6D?DD88X0?42@mM#BR!Ei-^orn6KUz- z4X*O-Q2)eEca{cXey@hvh1NIWO9)k}4K+>@&9emyI$Vo7b1X8P37WBe*yUCFM96KdYk}?JA4MoOKOd0G8&h6l44IyZDDk3FApo~{{p;_w60#dCx*wcd5V;6II^qAP2XUU8H0M##H47efi~p} z2Uu;14N*!Qn_e6jAQxmf3r(GG5EBy*qpjdYLf7#e&y>L)J&e4qTup7Fdm=+S>U6g( z)`7mW4AqVfZp=9Uk8N9Snzv6_r4wDJb911ONLX=rVwiH(Q&>HnT;3|~NYLpNegvA* zaSZGVFej6cK1MNo2~Cx98EIRdZy016O_u!=gQJPL7UG?C?w%A#2E$elg`t+F(E~mSa$qu)!v!?N)sU2cKL*l9V+a^atdxNwV&8>omqx zhi$)Ehm*}S-Ms4)PFg;Azrau5otuA`%MS=tMDc|plB?lnk{h=3pewFbPX3M%C0C%K z=ySl-q26`Ld>94Xe}j!;Ipi4$E#lyVKoETz%tz%1+WrR?`GFks6S;Sk2oeb-b1)GV zCe_eqWGD@kn(JnmH#8+P+7G9vDg08RLrH39lXP__T3zJC0rpCWzoEn2u{Bq0I?B#-Y%IG4T$Ri6>f6kqdMQ%=&pBr|#hsP*SamgQ01%qcR+w*&Hy zxw`hze*I`AN_{FhU-$blG&3FQ>tszWV0kqB%T>L@aM<%sm-vMl03ALF7cS=lCX!-49XksV(fmg z`!gHSx1|dj38qt;cJ0hs(mc;@e=Xn{^^YgC4?(PFx7Ry@Jkvh763n-vPPTfj8jzl` zw)Yt5mbbFxo=@|xzxekVQOi1dzO4XI24nM=yAI! zk~9(Unx~yvwhWd&%y+g$XjNFD8?`z$Oh;?U8c|Jw5YSw#}gBX2=e03Iu z9^>1*6?kH(Q`zK0yVUG!ZyN@;(he?woxp?%BVrg8GeJP%Qb`ZmBqGcSIzr2$4Otut ztU|LJ&-1d{pnrFE15)NHA)G_EM5Gv&lNOcUKMOj(x#Qe)uP5;<2IrPVZ8&!=<*ZMQ3E{-;#h1Zyq`EpL~8S?N$5ugI%_k)cF)Wt zZ-43FYNH@_^U?0L1$IWaVYOBAZSFL<+d!Qea>I$B*oYF=aqmgNgiCS)3rTHmV^kx8 z&KIkR0w%=tPhF$XmKa&P8@!*4$GUY~HdrDQ5+t`qse<+=5%yLvopaPK$q0lsRs{De z$Ozi)SMGu^SDvByfG&NZjSkR76e1=h@P}v@2f0`u?8+vzlu(|vu(9X?wEP9)KcEv4 zh|DV!ak5~(3j#4w6kTcehK#ODTGmWKHjrQTL()teAA`JfH^oI82_lr5q5i_Fu!iq( zay94u#WSMn-1|D~Ixz&K`QD`am9JdLuQ2fiSNvL$jfZkY<-Z^D{~krKlllrxP_bpl z&`4m{{IY&A7tDV@f&YO*;H5?nmt%~8p%&ns^yjA*sUqzTiep%V1-$lQax1}mU zGzn6es`OYGFT+1EjFR9zp?P0PnTl*&LFa<*{bWZX{`ht6!-`Ox4-E$U0n-*D_&a9e zA|k2a!JTBC%fs-i#eoT{bL#b!r39ckuz}Uc4rwRCIXII-PGSOJ@W{Iw5zjCZk4bwA zt~h?4hXVpg9=P7@;rDhyeZl+y?kq_B8ME&{Xrb8h19iV*o`9S?A{4qMB_LFNq92%r z`(P=eTN6^qljz950+HmL>!4K;sJ(ptUhniw$zR^-Z{Q(%JA6^UusY$BrQY|^2il$q zfTk%#YQjpcv}Fyy!3<>teUH+m1=Rs_ffrZ>M zEX&c}F!}diY4}(>&?x$yO$+nxQ>iYoyz}nKh{=KcL;L+DXz4tYwFNYWYJ)`4_$8Kkmq z;DnF^j#Uu2wXILy2>5Y7(Dk-qD)s$ju&|T?-i(n@zFQk*;46D7XKt}EOW63=jg+mn z;z=Ep>|%v)?+5qjT%;tq%j?X2zl{8R_?F_H(t>PIto4={Q>_=s7ze}&rtMW@u=u-C zm=}W&*}m9HGcufRrPu!1&%ZYhZqq7*(Jgli zDVv`Eu}f8)oOVQpDz}ZbIkm@ILS-ypva-@>eS~!8^ID*(y3oC2B_hd`h))B z{1FW*qZjjnF;eb=z>)qBNImp$-8izo5+|bhhdvVXkkADH#$UO#N!eOB=h;f<5XZB| z_38r<3BQ)iiLar&R)+E*nppQ{@Vci)DGWcYHYo%@_8$zX?VT{X-r}<6aIPx@sLm)5 zg4)!dCdJzK-0ezj|KY(&TIW@;G7r+fscyu1ZyQ@M5-SY-0GZBq;DNh@}(KSqSO zsHfq0?YgP&{^8p_8B9|PAF0~N-ZiYsU|M!Dx+NMZ+*(v;=_F$i`9k0ey$hbyebpA) z)LQ#u%HU|VsV5>knF?4ZSKF}zju!9}et##Q73^q5<^329b2_lu+=COX#!PdM7ZVsL zC)Q#l^r+whnV{5zE>WKIVcPKyDkwQL*qQO}CE@G7c2}CiFa8RS%R#xFVAf|AQ*q9) zkm;ZG#C?i}`lcx@M#ID$4F3sl{*zHD(#P=j=t$|MlxPOia_X~|`?WD=0OF!`f}v6L zhC%S2*w9m5WO^<8T$CKGo4CbfI6WT_@VCKqkE*`bG*L!}iK7yG`#&gPrfR|FV%}`R zj%Ti^$JYCg`VW#qRpknG|2 zQ)l%D^{xs(5kPT5l`-eym)}e9tljRx2Re17y1p_PM?A0cF1;{8b?Ex&jo<%mrYABH z=P<1_pp1Dd&8xUMKds65jeFp>4M|s!e@@<~zhH!~WqKJu_8X#*A*Ol zv%)EeAnv+Ci6CzLzla#$H})L|ev1sY=D=Qjg35iz*;|&+Uud@#I~pId|3I-q(`aXZBzsBRsBV1f$>Oh22-b8wSycWg%&qY--r8|4u^*CR}0 zK#*s;@OSVD@iN7=?L;$cX!w_=c_!SZ< zAT}#5MK*KkSfeE8u+-}Ic=-0_PuGpYH{tT{K1xbQ?F?-<@C8)A*nA>#=LoK}jr>vfF>fS8 zSt9`z5a2riK(B z*A>$@VFHe=nlvrv`|k2^1tD7*^$UNYUf@YbK+ z%xa|2ytvVgUu>!Y;sKbzwF~ioN8yZOJTT2zLvdmba4s~@+?*zHO^P&PB!?j4Um0<5 zGTXp+$A5$j(cWg0?q~CavCG`yHNX;KZkQ)GT@A(T{UuY!%7Xr&KF@75LW3OAHE(_+ zGK*r90uBq$W}PCXHH+?Kr);mmfUV_?h($Epf)GjC_zLD$_;Qsw(1bNSJzweY%r-*#zfz9VJBo2(5k zXMRgAc77Od=llFvRjF2$phW-328@%Ta)Onia&o)NC%}roI@9rzRNOU~vcCBea%Xw z;=3{}3gcddN&X11t=G`rGJVng>P?)t3$a}LMgY#KcUuekl^PHqtvj_4J)p_mQ1BZs zUU#z;z^ktq)n@k5WsI*luqn1|to`uK;&k$_l5Dx?K4FEY7hyS11ouDPA?&<*Z6UiU zUDB}Ixi4686|i=tjqyoyeGN_|giBqM;j{Loj*|W)XKU|Ddv!plepA5S%ZEhmA3_nY zf}`2gDn64E&C=HIMC7cYdfMrrhFvTddsrHP!Hxi?;?&w+##V5z(JVmlad~Pz{?+5U zv9Ocu<+OSVo%TFK{|RsPcWm9+Mv8Gbb4h9p(7tYg0hKdf-^_F7r0o%Xe)qKCsR;Il*@y)CKCgW zDLVuh*2v7qF)YhNIH$#l4vk;dyFcm5a0d$163Fh6r4(Epd3D29kVy*J{No@-`blO6 zCqW-50R0a+PpR}cv|g#&4WFk3;1eoUSIMV`LC2nQ~kWl2!DPwiWF2Pv_8bnI#d z1NqevE^=+%B;n#;Dqx?V)$>oYEIQmbPoMJpA9nbKtDy5}He5j`)f1-I(tF-9(>pcI ztkrrc={r=r(@J?fBZnQGk+TvcmNRmEM}K3BX<-_2xDzaxUSIY$#Q%fpX2c)9|Anlg zX~t|wv9OmZXzv!-5D^ZQ2YLUAP|G4OQv-qh@16;CY{1~5cwzA$Vdk*y^jUuE$sbac zgnwghB5RM#uC&d_`}3zqQw#em{lRcaao4D*}YYH;U$T`7e9FNSvSd!iJt4 z2eeN*GQJ=#{#e9?)N;c*ZXNbFQu?BnHU|1Ii$ML;Yw|;_ZQSsd7wZfgX*`+gjI)5; z@+Ri~YHOEyZu1x4^Icw#4{wAmX!jQUYbNFRvp?CbT_UfNz`dQ}P+E@di;wDbOndvN zE?cHgMm=EoT$iR)ou4GemFrtmoRbUR`hWc*e`4c_p33tpRzRj zMhpeEQ!GLqWMeDup{n?A9GaOvLd_x~`a4Yyo?Jthfin)wupiSyMcPV1>xZz)6i;IQ zA67+j0uIa$SMLUq$jOebj0@{0-e6@PB^Vq1<$x3PYYRxV?RtpKV@Ai;{MOYsdn#|u z>Z;FK^>^(htEVKmzVqi$<bY`)JwMySD`W-pDGiFuKl-A!PZl@p8Tqy>0JHr_not zj+%A3x&M4ULkg~0W8EiP`)~>UJkuy}J6ib|Sjji!&M(9CI&CkCKtA)d4KM3AD>z!o zTYzjQh4qWmA{%Sa94O>v;~3FM^mP@Kwl!Lpt8@0=P+JAt-f@k*{HqL@`}ktM_&P~> zTkyEOxO_B0S|o7oX~D7o0y~e?_e$jqF=V-YB;b!FgBpi&Lddg)Qh+rke%DHTP@=G- zyHK6BB*s5X1BXfOx!};R13MRtNSgrhR|?EdQ!-hRQAEb%oz@^U64uM4etP)lYll2; zC{2XFE&T*J)uW`P<`HJb34>`ApV=Mj|R~u8sU>R$u%hASND&tPbJ;goVXYwy9CG~vw+Yq_Jwis z;|<@(A*%17eEny0Go*83i3d!dh&)@QT}iKbOr-Gi9x8_SAN$dv&5#Hsuf-%!3eai{ zINeej9EX&@pXH0q{gyQ03*yG5zdea?p*p%M{4Kc}dOArmRe*sWRX^cN6-d`mx)yRS ze81K^=_}TOxa6zSjyUT}eFF$5K9ZZRha3sV-{eF;q5SMEz)p>e_KVVn>eVN(8BG~>TR3ED|rLUxjg|woZS-j0)l!I5G;U z>%blRpKhiOl~iJx`X`+rjBU|o%@nc^J`P?abEFf6WNGJmeopy@b+l_U_TiA*3K2 ztD0@+ETQ-q5xZwr|9@Wb3&f;s+hW#j61k0K(v3W?NBjD1*qzqIjvq$iL6Lc+0QiAo z;~ciZzpDYXa0@_ViyChr%036$Q&exm=G+8n93mc#A*Q}kc!l4=lH5}0BR_*282`0_ zf(irxOkO{0*r^C|&-9mz)YDCnV?XauL;&$RvX}ytDGVkKf9HLDFPy6YbQbb^y;C;b zkSq?Skobb~RKlmmgo_H}y~xW!WCxH<#{_>>D%y6%@h({X zF+^{#_`OwPUTRmB^{6kz0muILcREXP&L~i1xFdE}@jYUZTefbXONpRi+Qs)0f6h%}Nn6wKhQhbd>^mn7-@w-m%Q5Nx8 zriQ&Qz8j>>iMZF+P$qxT?!BU;ur)Y*6z%9%6dixf@dGmkDni?#7^^}32xhL?=Yj8I zq*Q`-j*iNP*~0BAk;PKO?P3H_HgIi!F-9-o+O{%cbpFh9h&Gt~C8Td(wj=UeLAX8i zO;IDplv_hyU!gwAwdEIi_s+kK+`qsl^cI`RDB&!dNkv#YVucxYUi2)R4Fy;$;^-1N zy&1SmZVj)@XMwR0shPCCtC1NIp=berM?TJ&v8F?8fx|<3J0a!yOYM2!S{~)vjY59x zP|gG23W^Ihov3RR$`YYW3Q-hRgA0=zwt%R_5kZPeVI2)_3=^G8VFyjaIQ)ySWLPHj zIhu__xW1qyYqqm!Aa2F}=qbP!k~@q}gKLS>U-*Hm_zjgY3n&TeA5bWlRp6>H3!NSn zyv?s!r*Y8nRo#)XmmPFT=~K+DTeBR;Ia%pny;^`%t9G&1S?FStM0lV8M` zH?`zaRbP>VKkFSvF*C8%X{#ApkjN5^E=dxRiY+iXR`-^*afk=2($!HFDwxn4Wjvvo zeGl^(+UJkF+!bm{sp|Wyv?w81d4g2%%($)|<#-+SCM@>r+5)Qx$m$Q)Ir-7w@eYdu zDbw_RTgw_p{29xPLY>+wY)a2bY2J1lXbhQQRl@U?zJ(PiXEac3ijGalJxrcn{jlC&!W0qq!=AEi>_3UH& ziv82+s$=xF&6;5U<*!qhcg>S%F1~zw4jbL$zFx#3=^n5wEu8Uov45$EFV+B63!m^Y z&<@%hHBcAoAI!?fjR@2~h^T$j|B=C{>Z$N3w=k#?@bR$tvS8GrY-Mx zdPw_&eyAKQ?fB%AL~KI+p7`G`eukx`nYiT3s27BZK%U0J0&07Eplln$sLD3zRREZq z{{Xn4hl+VqKEz=O2<}(zo1!m$hPzhIdkr1*-@0?ponC~0cFX-KEh^I0bc3vt}JzNg$ z1xt_>GJ`x}dtcGVAk(O=YN;%i8lD!ZXanrGo4&7qtSeK$hT{6F$k%_bDJB^0`&xHT zVVdgGe^oCJyR%(PZd!WulZ70|+`#bbIR zj15e9%ilCQhh3(f-KTHrrmhkiTIB^%&~T-XKkT+-*F_tA=|3~^ePKcjG4bs+@uev? zRc`&mH__wuug6?_-A#L)MPa>dwQH*uh_Uz?qmkO;p4y_=mTKRYY7m{{ADtulBh&0h z=FDov`05esm;Uz(_0Ai|fT!7`^$az?)}lAA;;sGW=~t;)qkH@3UA#jB^B)&UPY4OyMfRpvx^;Rh=M~y+7yVg?dlN%$VShgPiKzZ z9CN#B+0gnG3b%U4V4HS$msf4u|9-NW=Vb0^h*r}0W!}rl{Oa-OB2CE4?)PW#U@Av= zb-=gWF7A9W{hw@!zwc-Xt!r_zG|+6WV`H}4JiO$ZJVp~{pV)Kui2pQYkHMiwO5xza zH18BY8J1Fwo~xtE)N#Z6nvr&WWoPro_5R?F&latVo`q%WY!06;H1{_W9`dE1dga1p z$bXQvI{?4?5AGvZqx|-hXC8kBqbon12ya^kGz{$O2cJF!JfWI35Il_q0BFhWdOVh9 zjb{X!-=j558b*Fg{eIg_Hl{Uwc>^({6E7hPjQlP-n|d&=S~f26)LA;CI+f+s^!u8k zJI7Y%G9fP7{g=|T(WJR!N>E1okeADWlef8J^GK4@(IK;AkL->s_nru}JUO=W)I+P&m3zU^Crk`*0VCaZ!9)FL|mg6BBHv?{8*s$;I%J%W@Dc?KY0JFsZRKt=?rev)6W? z^RPP~Z+W4`=;9@ZA3f!ArJAOmsH=SqLfn6nQDj0AL`F&YI-{hhs6AM%o}!}hVD;ws z^_u^nHKeOuw&Pc1gzeNBGt-UOyG%xal_FuCl(3RfQqA;J%?wh_3{%a2mdTj4HlDRM znYK5bwl~YPHqW%SDA{RQvePPaqjly+o1%@jMH}tHHSEJR9459oPHc0ER5*8PKt{rH zM)8rp9W#TGTc-OHL`KPS_%21|`_>%?vc5UkVSlLE>2QbHkvx;53r@#6O^-KNo(Qo& zS+nQVwEpSG7H0-s&U);BJom`_{0HL;aaI>g%w1QfQa{gpz0%osTxUz81@rOqwYcRHTI!|M+O5f7ijF#m2D3W|@*q8{<%WlMX{u zrGeSFgL#vq#o}(u0V}JJ?badNZN|3RzT0P4waq?B*CFs5M>lnUr4j#?i{)lA6_+>XZU0hkKIahGIm$PvM6LfJMdXmE_3LMUl0$y#A3mzGf4FVY z?$=#TA<=tuI$U&rCw7xUF3Zm0ph!`bqE=E!hl~CVOM_w;!(tbsVi!_K?LOmxJthxq zP2cS?o0ZHnT`We8EC=>lRcc#TYTKlIW80={r&PDUyWOEo%dzVlr<$$KVc)<+6e;BP zn%{AizV$MMjt_hHSE&Btz3MN!?Qo8k9S7cQKG<$?=&|j8;c9~;N&Ai_SsZ(6aoo%1 z#3Q4VPpwbAHa>mZ;mjkGvjsNio*11^wY%VNd(qY4N1p#s&Cn=Td?96CvFe?)`jP}G z!Rvl-+XyMa>y}CR>>|PI)O=Q}2d~rcS-m-Uo#sKUh0WUK-z<|7x>Kj!Mc2b=x!N?C zD%>_o!7CAevuLH?Woz(wkKyAz%kI%?X#94M$#WyqvOQ*A2Ig1ySY#Mm-ZZt!P`A#I zYp{lGyoOzhntk{Vhj>lLcul8A+ntkiASHjpXHu3F-?qDmh}pM4UXXIh`n%wD-*@U9 znB9JG%;?Z-r^9o$N3yMtJ~lX(W_7&Y@kH;glkfI_oXWF2-M#xvgzec+(z!hA^GQ1| zC@n8`8~zw9H!`XpH)lxNevsn&bq($pLDR4DFP55@BB{3MXkXs3Ov#Xm&L=zFS|dGA z5iv;)ihdQTecjL*{0SHs&=uEn@as7VNdU zqi#Kat+2Ve&9-o(UDYOgKV65*YL4%=JGrSjH;IVpSNT$EKH2^3rs>aLo9=JeK&eSK zAadf=58PBg*tqM^WAnoudyfP;9WAvu7V2`m-Q+}(^T{CVQ*%bAee}=7IG=rMbZ*$? z{G{=PB%_OsRx%&in(uV9ec|KMKS`@=MOs~d`xPHQZPae8l^eA}P3_37EB%P2&MO<; z_m0bS)R`#~)=CL$m+5$Aqwl}dpvB&>#onmJ9y$^Yjg^ij0mi1YPG`_>J1Ek>kXD;#>>Un%f;lCh3P8`vo7Z5iC`pK<#Wu)j3n8^NRG6BX#+9iDH!S4 zdSG$e!4|_q9X5x@jgF+-AN8_4=DPQIzU_&3drnRpoLaO!?PYf6h27aKmvfDOM(6Xb zFFbR(II!o(Y)Wsr_VhRZJZ5AcX%aEh^e@MZQiYf))YkUUTBhW+zE0Ra-3KC#xJf(w zY!yu^QqxMzMDNs}u{8)WG7K>?3NgY-7A=imIh*7do8}pty|FRBWMpxFkENfB)r*bR z4-_`h3foeJU8|aXtD1wirsI2mb*K96&M^uoX@Zi3HN;HVzMsvS|NMi={!1c_bnGT( zK5aR0TXFE#&O?39hkJJ&d1rpK(dgI}$K!>zC){jL4(~d3)9&=3&6xf>;5BN0qpQ?|*JzBc z+WcHq(*!3A(fL*B9Wc>J+NGPhQhKv2718UY;1yDmcIlVc8NhzjXhF$~ zHD7XTn#s@R6hEI+;3qU_d-0QZn+{BFKls7%P_)tEUh5-XCP!oKSlk4gp15Uk^4`u< zN!F)5ZO$~CpB=V;J~!lYe#H91oqZRt?3DTF)Qa2j&sR3GpG2zuFe{Qtr0Q2)$xkV1 zQiYQDYT6ZBmMLkr)_Liq>+Z6gO=k8eB2}eG)#Yr`XQ3an)1Y*Z;d@J?_m)snXKOs^ zY!Yo^nrLcvX|MTJM~ey@%Q-`$dtTv`q`4==kC&S=tNjRNw($zf4zhL28RZB9{y-_#NGC2oY}D=i{mA>C&rym zHkh31vN+x5cxFcb>>Hi@w*hm8>HTq!V_t#?`3ZA-o)^| ziP1~35H52v&UG>IG&8+rYgXc9p0(4W+0?Sl$f|0i^^C5~l%B2McDwMc_WoNOYPUGv z+~VZD&H0la#036oAv|mIGdF43S9~}AveFo0o^CsTP`mA5nCYRhJ%{scj(Aud{a}7< za@X-%rxP(YCr4~f6`P!%H$5|De0JLIT)orzf?XFP3@$bq{MfrzCT3XMOIKdp$i&R7 zTCP1x;VzjX&1U{2rzjPhD%PvLUZs9_y~gWRnz~wko3*_(m+AOuuajx1t5oQ@N!wke z9Vt$KQszp@$+XnZv^2=HG|aSIP9-&xagAgWCYgpwW)CIvhmyrj$?~RT^=zB)*sW_!noK`A-&L|aUm5Osp#d)RTf>Lo&sgPNS)6Uu< z7hjo$xm90vt+}Eh$zA&u3$ts~T34yhuF+^+wK;H&rhP}^v&bLJE&0YH?rv_Or?-?ch28f8#oKSq}%zjElnppm) zt^caT)UQ?ZU#(uhR>Obw=0~cUN3~w*X$P$I?oHM@$$NAY4D{SZ=IA$7q^+0IRu(h~ z2KosG1_=g+2`ha_i)7p)nM6yb(O)}%h1Vu)uT3^rHrZa;WEY`nAED{cwZ*Y(i&OA7 z&J7}Sq^_7azrUt)pj_|ZW9d+{bXX}J@iRVJZFg*O&+#dz z6N@${b1hEA?mb;%c;?2gvp%NhviF^L)xQwG_u?fBnT`_8!e2G+Kc%Bf(9!jOH66a| z)!wXD_g$~?X7%Q-^_sU=Y2|2Z59%%Ram83?)LC~>)Y}Ecj^}2IuJuya`sE-Qx6vQB zF&MWo9A8=LcDWdLxtLrrFuh`6_SV+?t*ym^jpc%k)u@K`sD_RIc3c1Lc40d9VLA?v z^c)}QIgMyIU)6+vaC9(}g&vi&Ks=A3>Vszn%|2 z5hs3Yzv3flom%;7^`vzg<*PUQt<`j2r8TdsU8Awghqr}}w}o!C#j<~YG}|lu)=GXW zvC?a*-)m~nYiihQy39w@CA{H74f=oG;{AUkoyq`DoG{ zl78)KcWCVoS)wT$`kIoab!sE4)SK36jI7$6wNBGmt6g2YYNez^?a_%g*L`V*hs-N> zc)BRE)=8P`mOaGNP=D0PVARQQ)MkCY_RL#$L1TUFJ7`^et*6%f7u4R zzOi|tunpI?i_o!;&~f;<$?^6!C(rH9#UgtQEw5#wrEjCnVIRG9y|C znl~LRGB^}wb~x1G$e7X5EQezeX2-+zPs})-^tV4%V}JVHt}`(fXP0)K%e6ay-~Pg& z?Zr9EABQL@URp7KJHK=wKP4q${SWS93n1a^xXDpbt6i<0qoPr}dUKA7=G9eN!8+Q{ zR`ym~9drgAbmy&>oA+!3#hj|twvtDJEcAmc43hU5ChuF>HQQ~RX=IWvndV4lt&;g$ z$s$Lxd?;B3Z@13Xwwc{#JG;&9wwisFj>Dw7j zcAk4~e}2&ULXPvrdb=NU=u=0vvUkd@yUfa`uS-m$2%W~SON`rEwTRW~Zfi9nR&Q=x zt9enYbc^$JBNmixW)}`7uxeD7{h26Ba{j|12zqVt)wo{{q^9#X9a#+Jsz!pQ43hD{%DOx!0OEnYc!8*HEz-F zU)c^BGtpTv)h%;gUd2opDvCBpMJwkK?=1D-SsJ{vG<>(xdQ>_aS2~+i=$lsPn~fQn zj~Q9qG-ZcqNW*$a!zNMPHc{Q~mahFRU5A3Ljs;ttqST!4imY0+yhG$JeY;=^7x~iu zH=@daWLkgsXwCPtTMi^B4hHQyG+=u8jq{OC>!VMtj`f<8RZE>tPCA~tYj8Tp`Am%6 zSs&|j`FqY6n_rl*xEO3eR^9Sa@nx6!^V04!9pQqG@UQ78R#lr?rCzM6F|}%Qs;Z`q zR>fBB%%805I`nl)&2;-rm+Q=kfg*f^6ux19**gOC^#k+`0`v_7R=lIp!no1GB+|q* z(!{LU)V$f$LTPTPG`EV?vX0fVxwOgl(k8nAg?)g+VOG;|R@3R4rt=4pMZ!0HIkzem zyUZCj%UR@^$#=!7-zRN35T$Sb#+hE{FMwDPIuIvWu4rr*EuPARHRQU%euRE`la>;rS^uU z_C}>*k0@`qao%o|AS=@#E3+0e^Ab*VRm971LX3K%OEeETe58dB)_`dUzFz2K3 z*2hNej$gAp@zMFD+pbeh&Zl#1&O9?a>t%P&Yv=g~HW#97E_(0$@zWZalp*bZuw7r8 z)CI+=l$BP!R#ckWbzfzW4pp`I)#@Fp8u6<&|3IrrUAuqda{7>cq;;Rp=x*KCeR@lx zNp0CD)vlzE)_wY|`wUw58Mdw@)Fp-SlH%7ise{|C2e;dJ>Dqef+U0Du&)MoQqU|`M z?KHL7xmc`nYnPXF^NMe8h)vahS;c-=)qj1HI=XdS@oS0b6kS>8`mcznQdO&2rCz0~ zQL{=@MQc`9`^uJI5z%a{)4Ydei%i6lV#fy?sdJ?xYc|$zHa2KBHf%OtCL&NW4wOvX zBvUuZEJiYqkt_lv%K*trxx-qy!=^{mwnx)$LeqXi(_u-?aY@Z-QOCJ|T`b``mn+MH z;@jpu%S62V4Rq^n+oly?YRYFKJ|~WR5hMBkWbw9EZE}@*#afNYRhv83Yg%i0Zq{DX z_!SqP#yXznx}L_%P7!Y-<*zK^JdO1|jSW1F4Lw)5@Q{o>B$H1H(@zSsK*>B%vhb2D zy(FtN4eK-wn`}MXY(2Yw@y+(*n;jOk92c~ldUc#z1Q+=#U%2oTy+_}^{foZ=E_}De zN&ke4&rb1J)Yr#f*VjAi)lycg-&wDbvRd;`wJJ2Un}6aI#a24$yO*6pCZcnX^my$u z5h1qvA+`n~wuT|LE8C}%v6p1Bs4!hrnE6ZQ{*uLI$?~#f)ud*B-K1u7Nyqk*j$N*X zeXfRstDd8)p3^IJ=VxjV@p$c*b$yo+MBI_~zgYjTB;xa#f5^6CNp8MmF6O`HB2r|E z$geZSqNw2<~Jk@AIZ{3vU1^9ihyk|rC*yW9*NTWXv0@b%&Dk(uU4N^(ePfa z`ExDzE!xAHzw(MZmOAOyy6M)-L<|{7;Vau<>DKz`)&}W+)`scU%S5|D_h2&x6*q>+U!;NsE5T?xO=$;jWtm8sz|*n8|jxU^`i_7e60+9SAwL=&iJ*H$#cmxOW(|6xA}yDMXhAn zWo$LN)p~4`jhnWuo3`Domi=u_hkH7XQ=6Q6)SR!2L(1Oe)EOv!+r3X5QX1}mCHRQ8 z{LXcMG{p7(dWFkpCbcn?nrZ4KC|?F}W1U%N-Bh?CH-dn_TXlAa` z8d1|O|4FR48|rlJ(#_t@ZlD}1uXjqJD-EcByP>|jp@F-hp}XNS9|Mx{fMjw@GQB04 z^-1P^l0|`JSs+=pYg)H!+T7e|dvl{*-VXb`9S*ab9A`HUD@0yx77*O*S%@K%tXr`X=o*7 zl-uf;+ZvSH8kVmV)o#hSM>2_%OyeZ8YRSA-vPhLI?@Ct9n%2#lHoiKxX?k|bt@g^T z4pj=rDuvUau5*ugxM66S2`}l}VEyF{;)36ROGJFL@atV-bluun#k!2InOIVPQM<8P zeMv>*#_G-a>om`6C2MI9DVB+FwbYq((oJ?Ice+YDLM)|>l?NJJE%jY34O}e^U00T? zWs-53WO7|Hy)K!JN#h}HW4yoTbrhem;tLfY# z7H1jDM8rzpPKrY}FKK__Z-5AYe}$XYm!djs% zny0ibYiTELUnU~cOs7R(_lEWI(NdM2!b?ROTgjU(`uZ*U1}*xAE&4_+`Yg+8?2K#d zOe%JnR_rn>bulk>vG{0c`O(lS@*C^OZ*0ocZOhc{rnT&+wHyMsItFfkb?Vb}elGHa zm&%uiI|4-=ah3L85_vPqG`flg3D2wCIcb&Lp zc(T;sl#l7@NV_wa^w0M1ITvbmzRd8#xWmO_Q;zO;c5nSc$4?ikv4W1+ujwe=pysw( zy>x?y+v?3(>otF-HNQiDyHkCI4qKhqhPs*h%d1q^J&ITr$#%Wl`h5w`%J3sO>fwkW!jsM?y_)qv@CG6%H3jJtYI^=(e}2w-D@>_A6tuGiuLAU|opo1mk5*LS5GzMt1P@Iv=sjPap=_cn(;b{%DnI5lK{x?s~7T+EFVpQf{Mj%}BSzdAYy1yH9FfvrNP_BmHYe2G@)X zul>5T87G;?Nfv>Bl4YP|mA}>=aK`Rhq?8q*7MqE@z{C&PE4sJx6anr#Nlrq^;r*MfFPq{!(mjl}P)m zHvD4YU&}>STZmEl{b&&*F<-|>|5~-i)$09gH5ylMj#kmUwo1!woA$Ks zuNEX8_Bv&M#=2$umeYoZsUliMidjh;5&QI;oD7(P+zFo_qQO&VY&B!nvKr6t5nKg7%+#LO^c<>}G_Q{w_t zlfJ!wrhR+Of_Iq*@3JV{V_CMxs!-3mP|qe%&o)qxXOJs5In3;EoY~yHKBCV$VwiifQFAMb2bHAMm)lLPnQ=#6ep!X>#I*96yX!S?5h7sI2f}6Uv z=5DR!zRY@GhV2pKd&I<4fNd(ke#?`*<>`3rNj-;+O0SDZ&VcpXEv`BF5+cJ8k&gip zwZg~=m2;mmZjafE#eN{;%H{Fn+Jpyxc;XzA)M-n8U`yHQNIih2Rmju#A{lRkGRt*~ zaE!=X{C}~^eTQ%yhskr?J$d%8<9=iC23h=X48enSLP}I95^tvAXjDte6w;%Zv%oBp z>Q1BVI2#a`)gHg&H}(+kI-JM`!dz3!M&e@tm8(HTp0reWMXj9ZR>`C5

M5+Z$6e0BBCx(p;e=z7aE(FhtYL$!@K=(ES?|d0 z+NgS4^f5eUGZtHBircS`zpP1^kS9JhCY2G%gZh+P+SK>Pv@MGC0Zm4QF7vVzjlJxh3$A=)MskNT}_3UX|ca}H?%ZO*@m%IaC5p3aX}yQ*J~ zTvw>C)A?~sjvm(OdVzil7-|WpyY{HkxjX6cv-bF5UwHU&PvU^T?SQ}iyNLWQa)F#iejV-yC&sJk#9@Zer! z@&-Kk*O-D)58?kKnvsfsc)9W;PcErdOY`Keo!Wj9jMD6xCs*Zv$&oy{I!{hJjRD#N zbR|Gv0t}CV@i8!+2j=s@vcR=2aIud9{G)();AeZ_XYUq~-6BV)m@4pfVlnCx=09ZX zYt=5%QThi&$9~ZN`&sZTjEz}$>9uzacN>%U*@M50DVSvm|3lOsC_cJs>h}qgT-Qh+ z>0QIFEh!XGt{C3eg4y(tw zyJIw$&CO!+a@qW>#Ri@&3=?%r#V2W7@p*^jyhEB#7t>mkY@7|o=>reu+;U@U$K9w4d}RPx?FB0;%^9 zi}95O!6~>bIYNdWh1H|T8kWlr@AZl(3Wz)iqUu2O7>GG;P+ z07EMg&sY?j{s{h3cAsz6ltHfN=JFTB&8%?7B{_8S5TS2jsuU7o$5`R{{t>SNBOijO zHz4}DJf>309KoI8F@dK4v}P=rGf$|T;UVw;eYTW; zK|NmP?pkSI!+pfywXfknVhFZyghJ6LnfNo;1;;D1^p6(%HidDY!qg7T?ZA>1Xw3@5S_1KwK;o3Y?UcX0TS9hA z9M1x%tFTEabFCJu!1|N0Nja_$ZGz>0q}~+Pz9zg{7BMD?ECNv{L3AC6X#=ruKwJ+J ze@ve6Mw@t5o%BVWe9)M33rRg1k~W5>4=Xb!jG0fIOZa}p2>9)&XAow~pnJCL;BZef zc{@1#(~EuE8sY!wv}KRc(J^e7w1h}|RW3NrS!IJ9Fi0m$ONi>A13BnWAEbMKwy#RG zRPFTe)B(dnkg?EU>IdctVA&sN-5-b@5#mRL#BQ-|x7hyDmwf5#IP693gwk`6v)r@o zg3_}9gg$`D(ualZ;DmqRMGSdGZU<4tAo>=FnFg^7L2+ko@!QP_x8#Ytk)%3n@_SRt zekyfZm3A>GeNLBg11>e8GJC}WM(F^V4N}bpA+td%jeQ+J>wqp7=yQSLEHIu0 zrb1vYT&%Ht>i{1+C&JH(h{Jxi!+!SfKIC^F$0I&<2yWI!T>;Vx*58JI9-bjQwB!#g zQL+^y@@0$0>gec%rKQtVTK@CZT33LqhGRQt5sn6__{=Kb%5#-uE?Amxb}`66kgSsp zI+q_d1*_(Qk-1>?9Q{-4=s>i^0&MGq&hVwMKKT(K0Bt4ob1@GJLy?=#<$y zW%lnj(=!RxTa5>)+b%ICm+XCu9K;c@w8Lc^kbHcazo}dCxetLvK7BLd6o$E93<3p z?u2@k#ofx}U1jmNG6g%=3jeEUBUfCr>IM2XR8lIJexy0|qCs|ljs?!qoLXa5-Jp;g zl==qkCZ02(3&Fa(sJ@ai}x8n#und6B%G%b zvvf(_isUoOluf38)OmASnI?U+Jfpyt`N=sTomXsDEM?6P_le*csL#*1>+?4(?ktn{ zhQ*&{3ePb_ZQkO8zAL7;{UMSfQo29HB}$7BaE4wX><>}x4?*^asQ1&ZmF)oCPVeRO zfiWMLa)3DpSn9m3b>7&1A--QoocFPv_pzV#B+q&}a=FxhQwYWzk7a9hzTBn7F8y7B z?%d0-5&dtI>W!iQ<(G}h5*)i>fb4cxrY~9C?JV9)7JoZSc#R=y_ZI&YufUN{NO~>K z?sX$vvQ?PCZhAj=a<0*TAs zw#(l3SH9$bD_=(sj~as>z}>E=DtTc2DX7u!s9nwc-{X&F##Q7OI$dhqdLR-#?x`}( z=6+%DrrG>23_*p5kPwv$#6`5_exp)yLm~a9aOKGshpdMMdgwf<*Q;I`kyl3bDuQz<^m!&TBDB1qlb(!b*k7ZDsCSY|4NxKp-uc@ zOe!%Yk6Ti%8dA%&X&?0I8>x&eRpzMD*|LbYDSv70m&RTt5RMXeI8L#+olM>-7Qd4z zC}9bIcQ8b6{Kc16y}SQJNcwSUrN*^Pcw?58us{b5Nk6VCG9$ML^*B94uf)*Lh;FA^ zKdm!-F&MuA)40i;<*-!ySqH?}QxSehL=*(tdj0KXT(XSo7!0ItLozLKL9!jJzYg`s z2ncP2)G@0LJH-k=z>8>=MqWgtj^NRoiI^*YWb6)YT)88D981U!Nu04H?NcUqTT+Hh zsgEsbI}Pa_>Wp_mnLFh0&CY&gnM_x!(?hVr9HJ}C5xT+*vAMkr-VmGL%Mcu53;jel zxZ)XFf>b&rFGHlybS?>Umy#V~gKe|~$-z`P7?Ojjb7+D3OpiX(>#hR*RbZF~#%W-G zx&_R)faQ&k^^FfU#>2;WL;>Gcz_(X=k(FMKQBP{009sjA`j?k*OW#C=o`wliYzP}- zhd&ZUl=35oj8Uyr^te9eJBTgB<6ax%_o4~Yn#7CRq@-JJ2SrACE8ycqf2wr2`E-4Tw?VW=d|>o$vG`86IrYH*f9}) zOhnB3+O`YrGa_Xe!$JkgsZ>H1?!s;CoY!_E?jaTE+2UjU-^;sXw(mDbcr$M zAr+g2$6YtY=P47u*b_e}lHS^qw`)?K6RD^0w9i!fcT>hqYvyfdzuVw{eOmjA=X@!H zh9Id7xk%+d-_eqFbp}25Sj?a-Kk+&GDPWCRl8s8UQP(JB2L*;`Ldix|*(j2Ys`(20tNcdJ^7^_OzDt-kxdP;WARhLU6+Yq>(IAXG z45F@r=&j0_m&(|AW!!f|{AN|cUUlMCbJCbKdBl*CtxCPBO1o@JFEeK3IWn7V8ycOj zHLgk~kzZbGEY;!joWF7)F6Z5G8Rc-FGI^sM{!^wP$3wW6A*zyyd+Ap_13Jk*owUd1 zL}igqe%NI>9^gEGy~W;aR&7%wZDw^FZEzR_Xrt0;4(ks#)C1!gi>VZtH(D(_#nzo- ztVDnpdJ`w5wk)1~QcPC(I%>sK1EksWoMm0IPv=A>54c`AT~UXPa>5J!Bl>+JZ^)y1 z4AJL8VumfTW7@c4Rs0=!!Y(B7xhd(P!nt#~XiME;O`9cu(|_7B4qGxeX*M`NUS2og z`&jeawM!eM**5pX9@{*)Z4BNv4}Kd%@OqtattgKtZeP9)6fAiZEUmD)4tv~I$lBI` zHkx1`1*`f{WV>3uU9H)!cCKBnDbYriu0x^!tTVhc7$>!+Dx0|pUglvBM0lw; z@tA9S%(dTt_9RCF9J@r+ZMfHOTeBP|FW?p`3xs}waq`g|w#_5_xlhEPBr=bTdZ~>r zGslb}u}9FjQZzo_nsCFO_+6EB5J|pmPC1}VeHWb89F$%doY9SC_BuxaUA`^9vg^`g z{EHrcJ%^`GF1jx(S0~RWkHzFE4-`M8_1cJ8a!V(F-79w?GEd1qd4LNvwYHF|DjeB~ zt9Rm>owyT`S8DV$sjEZv=M;wPi1DG(ly5P=4zld=vEKH^?sM_+Kw>w~*2}Zk1(3(2 zj;CJK7RV(RU7O0ql5-2j$ZN`#Ii;jCb6$Hzyzq&9u8DeWi|&%gJf&h6OmUT}_%=hr z5iIe4lp*Q4CAry>azm4PQ!DIdMDlL z4dduAuB%Y!D-?!fO5-u5>4?^RL~FS!uwE5^U8M3(M5`wPBeDG8uunRzD$=eXiGe; zOzP4l-%+Prpi-ypX>Z}vuW~Z8)Zuia`*mr5@xm;B!Z!OA)dgtZ#zFcPDU0 z$ZpU7n6x`1WKzCg_>nWzf^FRh_wtB-!k_HEVb*nElge=o8Q6|l(B?a4AG=a zT()Yx-(ZlG1WDUT*LLcaMOMZFWpn|4iK~6PCdF`xX$o2NLUdWmp|M z{768=^T5b6SX3VpU2lpxXN!F;kNYl%`M*sEnV= z%n7F+nN@X(e`#`-AZdUZ)8OHM2FX=6caq7w%H~fp1q~j;Lkv-lNW5j$JYct6(rR=z zz)Kal)g){101b4~^i!&S3hAfR{gkGkaz@F79-YwZUMlr3m4<4{SWTJQ6y`RCC0lIG zUTkvw@TY#n7Kv?(#Gda%=KDAf_))juRI$M|64(dUx5A0hE)bdrd1N1d7It;9@AHaS z;75M5Ma|2jk7{Ge$k@xuxG^gJHIa}{B_2^F^*NHK^eJzM)FY0xB1L+sCgZp+bIf^9 z>#%xE{O`uwMM>WbA!(-d{0uG8KCR>4WAaMZ@b57NZ`KI6GDQ1$;#`_XCUuf(Lb?NY zbvbWH&`je|s8kgykq@hXW{QtYXo*>O3+S^E!$sWqBiPiUFpuDt7rxdPzF3n#UMnNI zylnYWd#8}>6go=0s9ack?>cMmNw}_hs(1NKcdh&TW}zWvp6_q>+gl+RTV3(-pZ&Cm zUk%2-wN5bReZ+P2il!EqF0$H$ss241n1;`?&5Oe_5 z4FUZmFqCMG3z%t4Z@!0Fb}ecVU+fhhf5j)Z`q;Mm*t@u7x6pAsfU1ErlC2)gl{W{@ z1x7-gcsMVd1c#Nb34i7j(d!d=0E@a{kG>xgQ>u%d*2I0c#&6XnG$|7&w9ZR7-DFB< zNa_Pc+ASn~QkyYtW7a0lU#DT^ZQ{6PO&^>4kiqL?^B*z zbX6j5r{CmXP)n**(hB;ud1A)P6L2!V+_Vip>p*E3(8tpb{QXiJhvX)B5CH=9C<3>QQT2 zvo*chn$c{{Y_@J_a;mctWwY;cU$f)_SpuaW#!0{XP_f^GdydKL_u!vn3i>^S|Ffu2 zDlYe0Vb=VA5Xonyw1#w<4XcfypN^6I5LJE%k{_~?GZz4Qfu6%(1IBB>R1VDLz;csk zy~)Fd`1lZ?*ym&0=VQ;4l6g|caUW_wq}BeF$8evaM|(&fTJs0?{<~CTzQ0u6C8hcl zmYJvSW#-LV?oS49C!7D1A-JC(#V=?Byq&AQAM=e+rnaVMfF zvgdfh!ws^&># zewFbu7ofR7w+ZMs0mGTaJ_eW$0`oy&c_*=dzLQ`L-gtvIF%f8+2(4h z2C82A{o;*T(j9p)NAldK?yIrLV=ZE_AP~Qku3*tDmuy*7Vp`YU?zIl&(K*sAS2fF# zX1ThV?)vWn^e(;jzYkwBRKb@F^`6#$dQa?#AAZD-IKa0Z;M?yA$U6eZIG1_>*ARIt z=Hx90G$0Bzvx01=rUCXaz3jYVu9+7yCzE}Cc zAZaF~oet+RX0c=WL4vn53Vm`_pM1qWw+m=b0Q3aVBxVJ0Dm`|{$tv820`~$|A9@W*~(?liAj!Ji$ zsAO|%nY>Cizm_Td-$l0L)fa;Fttuaf0eYDB zs-FkO^T2cnm=6KVh{!r3a)rZxc8P8Kq68I_`C`WpA$1r^jLH?${!jX?)7C!{4y$et zuGSYXJ^u9szHK?|uF9v_+!+RMip`&42nyB+Euw6$_!&K9e{Gh$HcLCLE`9OLAbaTn zp3v3wnN79Zfb1jG`v}cG!dXGa^=Pq4w;R>B6Naz2@u9|a05|trEsfrP)&qf9$ztCo zBr5r~T&ev%mu%xY3S`tZ=qP;Rs-`($eU;U9Q8;S2SC+rSNysS(rS0}&Jr_>u$>y2q|jOo*+j3#qtmwCezXJ=o6Z1wr= z^yeGQk#Fub^(&h@&ES21W%H*Qf^RILN%WF0zD+BxDV^kQi1ZTuIPj)Q_KgL;(V22L zM77t5946I=NzGw+8M+-sOG9)`2L18H9>r$NF`EWZ^JRnOTA=lg4Ex}VfAA$HdA3QO zeY=$0E_Dp~Q@0^sd}A%Yd@9oa<0km$ArSg=DN~GLU)kX^0TE4qevy^xs7JQwkP5Ox?%xli8KefmYpI=6&OY~XK z{@1f5=c&65xo$1@1A|w$mj8hvsAmg}qBk<}IqnLBzEw$HXr(t$*NKYLsO%XF)YDlr z9juxTMy7++)AXu;zs`u(8J+F@M_{N5HdfIuf8GnM?*&+sH{Rq;Z1S^h^0RO8A-DKA zhGkS9Z13w=ZkWE%{-a6%&uqPG+ObI&R<|~MyMIKUIP!@$s?i+%&K`3_6?;V=S8R{} zrcTJxB^Dc#E}_Y{k(5DY>M3Q~8%27TBBM)@*`?S}@3ioLw;|7ce|g)mw6kkt|7!uR z9opP+xy0snGkKTT{O(01$`S5ihz9({yTJ-DCBc%f!P0xQhksBjTi}4Uh)hyrInrOuu@E?=No~mI9`g{jVw*Fs<&u zJY#b^8N6p~ekVgv#S*R)_4tb~(LL>cxun)0UC_IKKzXQ^Rk1)T4azr4HG?BFxOxWH z%)oKseLLER=xUAnjaI{cqw%`KbQLi_*IP~qtS1E6v>2Zj6P*HEE7#u1B|Eu}JpyVD z%8yp|@@3>6%Rla-|6B+P-3~!1G=)85hgbVX)CnW6Xro?eqYKcOyr9^5B<_YX{;WJ< z7)k7Z)+HUYCVwGQj^e4elxc6R=`~2k6q>o&w4s%~^e%q}DfavAE89}ox0Jf~Ez=zC z1d}(-;ZHCH7uN}oFhpAf;v&&XwB#8i50%ohM%O~-jv16L8 zgi2Qf^fkbBO#G%M zY+Q;op?m&7IQ+_Ak;T#CqyoV=2E(+K>rjN+6e$nK(fDMJK=P(A5~fwMAiin zwo8WZf07Xgd~64N?88EGSmtb0SFfTVb3dQVJ~70_(H@oAttHy@)2hf31mcF9&2faNOZi74V$e`;}qGd$^#h z4h}v42jbx{a#FIK92)^+GjJ8%5x8<0S+#O;zUx@W-OS?MTF2ka611^|O$^aRnfT4B zSNRJ@$%0XOGsO9}e8RM!-$MXmc0+FyZQ=9 zpB2AcKVorju( zfx{nX3cjromM}yW0pk0s8rtUuNr6H7L*?SmHWECbxwF8aDli}g26X|=oo@m9mcCH1 z+6(f7YyH8+&IaIT1Bf|4+nk?0$DhpccU+KBdmv>zSn-lQhvD%>9$Nhea%G$Pu-|We zhL@r2xa>X>TwrteGIe}B|lPQSEl>7Og;dR{S4BqfM z{&R+4iX-HTZcD@)X`jPBjif^>y-eTMd*T37^n|oStLo4q9a?pVcI8sR0DY-o3>e3N z=_)W^1(q41bw-HI3h`MXfALCadnL3t@yRB><29Fh1v{82&a%&8AN1AL28E9P0p>Wa zJ}vp}JD^IKCzbAbGUUN+X7YwS_{~f~rHAnU6m1I-&vRFr+s_8c1GTfHEImHHgMmsq zO+Fh`pAE=ogZeX_CdUAJ4Cu0fKHL3%#aprUtr*)Y!}rRFE}^YUe`w$BPww`2R0^pr zkVPw3Za+VOZ=z~JXzm|KlS}HylHXpUyu|s}E2uIqxqBOKtmBR{dChG8C{xhAM!26L znh=WL(t&X(SaK*>dYhh}_uFN!*x(YKC+7&&IRZIHsL#<#qtA-=S#_;I-wF(c2B(XC z9GJ&}WuMHtPlg@jf8z)FM4q=T&)dGAPwwYCw)#;!psD}T%Jlpa+^=+l(1E4txiPGH zv6u6XIK+#bRYz4((cg_R*~-{PJZ{P!e<3I#&z5*fnRGNH`I0?l-kN&OlGbHTufj5# z$joNthD*-rdAE9pDbtas5TM!!n7Hd{yX$FxA4t9rbUgH?wnI12Th7vqbdfh2;9JT=8dq%m&E1>2 zCq2mP^LKfKqE*yv~5=x5LNCbPXA zBYf&6JTQ1=Whhn(Tay+lH0uvwF{U1p{8C<*v_=;Uj4t=`I>Y8JFnBX;{sKc#yiOP* z+U+Oaf3m8)76(fjgQbP^os-RaSr-R%(V4YgWh zt=80snfowHwU@Qp3)?Njcgu+W09${6J;#U4@o|*+P_uBw)a9a$EU>;2Hubq6bOge& z#Sk{b4u2_$n2(cg?Q7l_z_;J72^fB1Vr36)sl1A9_~E_oz4<(N734W9Ph zk^WJYaUae6=v+fKXl{#t%NfTYBFEfQA|dMpd2>$up|+Xsh;hIeJ~Ls{r~6_z-9z$oUYcA6UK%t>1;%H6Q$% ze-E)sYTG5X*YL?2zN0pfs)kbI*h+bw*E+G-141wU2^*ni^!GrVfx`TZ`}q7Yn_I)= z9cJ@un1VAb;r}8UVtGp+(ps5^n1BY zI^!mtX#|)@faRyJ^`|ekiHC3E5v`uKe^yWX4k@`q>bNMPrl2Z6!&*KX_62nvzsdar z6ZCRTm-lahsDu$w=^ha!9^7gsuf&62%@oXYg#VN1hDdyqJ_IzXk-SHwkLXMBy9rQ9 zN5p$X^&UaqBkK1wan1sC7U<3Z{TX1m6=b{>WaP}mR6iVfRk|Xg5v(7Dg6lH~t^WfNab0uP=eLh2yI@3gxjXk?vbir9yq9eL z3x=SJB@7gu^cHWVffzDNiuKZ;8kfL094zZ%fi5~IiuI~uJyNV!7t<%v^Ds0I)3pJ8 z8!(KUjN>NLM_~R4EYJO{&;76ke<8jgBo2se2gLTTf#laf$G1SLY>6pY%R+n(21T7Y zv=au!ye#Y`JG@aCaZwmqq>1X%L_gNX6kB6AYvV?V_#su)k>X$8GH|#*n7mUQ{tu?0f0!k_$PkV2 z#KWu36wE0k-%;r|)P+hNE<3~m#WX74QPp=8`Hrf;)7ImQIC>FxemU6z3?G2;1Kq7< z@vT{WteB4%^NH61w$}mn>jLt+z>z1Q-oaEUUU5FvLD{t%4c!evVa=TIyS@Aott%brrAO1&7AR%}ckwq{ggnbnx{UV&y&Z~X2sP_D%Mq8#Nj??@(ywM z&zXW;4`Dt-^gtkPe_3^Ou-+k=a7bGT`V_cBmgfO->2_tpp_*_Y6AtwR{mAqZj$Xob z`xN?p3d0wh@r%t=OPFg3OO@1GCB^DI@j6dpr?+jVxBZ3}dBe+*8%RBbdNj{t`9p!v za5Z}kgzjEC1+EP{#0f79h`7Lw>{mt=;n7)S%w2hG0TtJze~tfcPI#tC%neSewhuOpMuR4^L9-#(xqRx@6#QPE--N_^)16rJINUlWFOS2oV+w9^g#U-A zM<#Bh4N#2=$p9|Bq;?VOv;o|tJK08ss!@S7D%6d%3VRLE*Fbk1=#RT^sw<_|N-6fh zAAjIabokmje|+uTzGSzrqgz0IfZfVX7qOlP>j!Wr9A`o3@E;)7eL*)@egIp(t>(Ot z1c7+u{!82)Huo!&cZbdY$`m}}2x}H;L?#~ebRp4imYi2gi-TOh_1wf{k2v5FU1iQI zRl77uj#{0g*5p9r(_S0esMA&3^xuKuEM|P9F}+ine@Bd#Z#?U63AT@q*LV>{p0*-S z`wK4lg6sI?PtC$s_K{1T7lZW=pgi9XLSI8LvV+6!u)_xh5eGnIqd97?Eqc2y=8ZMB z7K?kNiqF+0%xMy<)k$rRBQqF!|lJx zD)zssf1yaPa^I>nE!G+)uW7N?Fa_0Y;Q@xIKp>u=N#tyht=|JmrAofUxKNb;L65AtB zdxGB@Ije{bYXGU_rFJ*kelN;p3dyk(B>F(+gx z5_2?39ggIKK`H&Z)OsxKSxEXBO~!~Ob40VD%DH2DuHEeO+pjl{bN>1S1LU}SZ$HQ8 zZejA~*!(R_!Euf-RJ27VeoYTaX9&p-i!`6EyyXhnaSk|6$HxwfYKH|mg{n`{HD*wb zf3_%`pOKsehB@GTuipaS>u-}tgd~ z8G;&?5Eu1{#rsx0av4=gJ{zT7^!mC2m+f2w9@4E`kz7@YA~z}ZO?ougL7}6;x;{)_ zPa3*4#wo3-*kS%=vwY-QzlpIKKYW{vXz;Z?;M(_klY6}#b%E49SZN-zm-YH*f1}G% zS_<>#hb*j%9bWGj(JzYpCXd?gh<;#?xv7plWRDxe<2$f~2}NQNl{85uUp1vX3Q2vV zPV1)9w_q79%FJ41!$bI)pmJXN%d^|1+B*ho@0h!4Kgr?FF?lCB{5hszj3umQh^~pm zP4tMSB=r5QIb2ek2(sWp7 zK4iA!imka~>{tNaB_bYjZ4bHjAAaNyKgXbqs)U>CF<0d+0qc8k*JF-`KOo!3RNth_ z%cj+>?FpDOC){(Uoy9%F}HrQ2f=?7;9+Cy!k-0390rj?AZkDneMlE`gp4gz#kJYu z>oiV>$3`NlRF!-mOUcuxe`cxD_95vbwv1MFW{-Bm31_05MaKMpd#Lg&gyE}uk?mx0 zo0z;#7Qcxp{C`Eyyu|0}mD|%`$*f*_PUmc97i59;a`2U|u-$4^w;JhItGnq#$Ey!v zKLExDz*G&))xdH}XgwvwPWj@ee2F98wjpXHIWJV!U5f9iteq;}=o(N8clPFq4hLoklZ!@61FQ{EA0Ws!Lx>IjIg1u^$Q z>`{4Ku{k~)NhrV*TXjhfHOX(aDO;_nl}OqfdHOaoV;s$FCYM(9HOe;d+mUf8>#zHe zEK1#l`dJotn#nuM;!iULeH`H#hG?-ay`&9MTWpd&3h5)Ie~T>2G1+|$^c*2}D z@hF*eSd-itf08m5l=>D;JETbOqB3@ona%bMrEvMCoRRB7Zib+cBlHnnP?3WfS1U05wEd|2f48Ses7`5^iRhrZojpb`F|Axq8o_Ly;r(X$4 zl|gzXf5yXyp=p z<-($YezsA-;of2L3OM{bOhGG4xS1j9mx-^ee_A`eQAvIR>1}wb^1CdsL@8@!fmS+g zt}0ahAxMi+y^;Q6;Ib0Es@Jut^ta@O^C8Awhv~c0yisep?_<5~gEji&jsC<-U)xJx z`>g=-yvQ*iqpBdYwyx}~e*z~Y4?*Y;NG3yyumVo_W&em*qR44o)EO-LZg5PFBeq5n ze|O0iKc-ChfF_>QB<-~(pERX>Fs60|r#-c#XHgkn^_i_sCwiwdLfn~TNv>BzRI2I6 z*YD|^S&hp3bxu_31I68|9xCiKN%C>md#6nx@DM4hW`Sz@=EoXRDzq+SV>Lpt=3 zPInpTFT0P*mb}N+BD{K0d`N5$CH6Tle{#;tQOu>LVS`(}f=WK5*u7Y2Jw)ZE+=)uL zZ^R|f$Q>YRH;B#!F$X~GX%Ke@#D4|}w=9YImZTz8@`BMxCLgqE#g_EOkc=&w%s%Hg z#%EPE@@4(8y6{fI!aM0+cwepKjxl+!*73)f!g7Y_gpYWN{?uuYMp9{)?$J2ifB73h zV2u$>(v^3QMzu$S?9r(A(B~}*0a^%jTY-Kny_wt(%=>|5NNOFDVi!E|3!cP0&od<3<;-0)}PVw8{;L0JPmb-6Ts@8F{nY^lX z{A{KmXN@pi^hPK?Dp+|4x5p^ie`8$P(jHNR^5w#7Q1uv)9)r4v-qL=Rpo6 zyv+1XX8tC#92Qy+3$ZU=_!lpt!Qa;4Z@(8n-V1PS1;D4sim;&)H+hdF<}UV2mPF3hd^b+bP<=#3A0 z6MF+~djsu9x#UrfbAkuFfSnbB=#-EE-14GfdOI0;PGf%!VHoaS0jbFmp7KEorXc(y5?y(NHb z32>ALP=#<1RK;0-f4Oi1j!uh-&?%TLn?Tq#PWXI4#DsTbA&5EyFVT&G*ewRK z(C+dGey({Q{?$?@wU$Y-Z(RJ8C-F*ZdnL6uh{*=Ardj{0<^1&o(&@CjU2YGXo5SSoVe@mCf{!d=gy=P2d}Gxhc}ykA z(o4@9U8224e=n=$fX6hWcA8WbC{lr{E9k^IjiE!3?mHv`8OX}kQB$5O4m7rc) zwQpr}-!phy+5Gnmp+R)OSNw%en|V}{t&kp~e-8s6Ai#m;ceJQ#9!2I+^*kLRa{!&A zmzGOk95n-T^J3cYtz~>HON?iUiQ59(ZGpYopRD$Gl=G;=@KwhF&N8)T!?tb?gx>lC zX)_me+W)ublImE0-GZg2&OK+ES=>1WubIW4V+d||2<@Wd5^)WEu3@uM@(z=Zkgnc7CmItU?{;|WT`esLRjOrdta}qwpzidW#Yjs}@`XQU49Wx$4OqZ@Z3nKLzm6n62-&bdBqcXEB8|s`1(-Kr0 zu*@aPZ=n|ZnBuj6-GDbNir2bYnQydcKfvY|GI@6uW+7U68GRLAgXp70j9zUDyG3_h z*AZK&h?~;Kzf~m6s1kRONtMdvEvA$&rqs_`CzqTI$#|s7JgM4nW9=d|h1wtfzn!+v zvHto3>158GPO>@NQ%qhqhkuGGf0$zl|9jDdOx#Bw32JsoDnq1I^t8QLC;P$zb9B5^ zhNx~~$YVtPm>vLZ)}cQzU5!>hrZ=2Mj5B6af3UeoV=3~s7I|Z50`WdB@!8k*+1K7I zAe#k_V=}4&Qpp@^<+Dk%>kE$`a4OP*g=KTXUx*_bxsex5QMqXJCtXZ2e-Zmt9k-E) z--IW8)g^9LB^{uWOROn(9jPDmX+uc*xIE*UIrBuwhB;@voYr>ui}yG|+3dc;yu`%%n#4jt%b6>f}nW z>aGI0t5DyihiKOk^pMHPf3dA9!w_Md2c}z#zz~*pk+off4RP@oBI23Q_DpEsB_MBj zI*xf!TVdaOhx6-B<^dV@VqJIxH)7g5a+@P+*b@EJ6!Q~{-G#)}F7~@b!f9pVf;#D% zA$fC1%7{9(Jt%Dxm3~5-ah%9}gKW6tR3%N?r@#K)u@oiMkY20Zf6;iv=C(6J^XEABxfI%ssxh;9Ny zjn-JBHN67nSHN=3%X-ZVJLHca@+S(#wnDLeFn}BkaD0|hui^8S>J^u9xkumwn2Yobq){`B6ELNuIBKmsJT5^&JDDmmwkpXjmaDyud4> zMi}|j6jf}E9tn=gwmP3d9W}=PG$-s=CvFQ#dQ2tXu%?``ram*KP0G`s;Tb=4nK{ns z>PNK4|ChFRf2sZ+gf-{jsskTO^>;PB9`snG*Y*JMS$g>XL@yb$OZU4$9n2s~vmr*;wR-!y7#w*~w*e_75$K0WWwrv+^8AttYY%|FBx zoM#FDTTyACcn3XuFAI{C1xYWQM`!~`ouUEN&l@H_YPqF$Iq~!eWM~+gto2 zU?pK%tda#v+E4q2PEfL&9^mn^?^35K&>;mnfAx1dVZP#MJLSBoHRCYcCyj5krjv-d zRblz+XU&pgx!!oLH!&}=&5P`n5^_Q0s1#ET(1!ZhMIi^k`UO~eZv}_mUy2ZG*f1;n zv~NURWL1FdkDx#J*R>bx`qx%7j`=VyPji5l!wTQ*LTg_akZLru3V}jIZ|0 ze>(Yw$MD!mP%-$$rMv`85sZ@}*L2mDFlW|q-!OS+*6`mj1!vX?%NU|NKH@`S?_I!& zO7lYe~QdwEe*-vN}8^qeTrXht}TJF6;_z7?jdrI z&0S#f?y>m`Ou<%;@Df9GE>K)d(?^y~vd=C(Yj?%RNxN(-2W+L|W8AE|p+lZ2)z9eV zZ^aVwvBWt?Qim$} zi#erUn>wUSYci()G&oNcUUm}dXwbJ`=KxD2@*W1qd-plO$Hg9x!TY$_<1qwNETKa* zC>GzLMcFI4q!*Wd!(4NKy$bN2e-4aSa@8w2@=C6LC105Xbi+BoAz*j{j8A~67MN>+ zNty=&Ek!-_}MJM!dl^VhGn3;oUUTb}hT59{FK9bDIs=>6VgzqcdHn<|3} zq>uHh7OS*`jkCgEOCqX#BTs^;S`d95#5{ywH+)sbzatZJki-RL(n)1Z?2Jr4gPLvW8HG>e8k#bv8j z566NfQ>3(uc9QL}fO~YJbg5NcYNSi8?xOeH#{qi$ckh7my{-A)*gXM$Pe2q2ZAC)+ zVNdd~r(?f2)ddZh_f{^QUP4?Zkk&uI8c)$#@QV;z>UO`w!t&kye^O&Rhda;UwR8CM z48eB~VX)|`SbSquU6~^!U%gg(oU$i91k@AOOCgNtxzkpZ*1jrOo_wxUloy6t-X zjM?yAY22nW4N>N821}!_wb2**>4$#~BnpML&k}pSCzB1DrEA>ciSOf8l$)B5wOe4k@CZn4;SiF>RRh8PFq5e6BiS#+3LlBmI^VsNO2uQI zE3wg`m*kVue9|=u*=Yd}Xq}!2_4S@OVTtlI_FcR+J)7ZE!DcVlB|=Rb*_{PlC+CGPkD zN%Vs|iN5gQ9%1rcc<_%f1@BnG|4y{YTYP~w2W?YGIyBM~3Ktd^<=_L&7#$i_hX(1; zs5|Hd#Ok+$e|^B%2Tb+ATn{WQ{?-Jv0f2x4I3o^6jA+s_oGYj56`+4Y> zd7g>A&)Xf{9sQxBzxIhZC*pKRx2PLra6&}H2^<(407X$z5C;+*4k`?JMBoP9qr`A57#5~<7&g0!*bq^nr+6Ex+#F7=`@?Xx9)9g*>c&U_P^)nU!9W^%4$ zx&4@PKaSd1B$jyhY^h#-2{KV~*K_5%`k-xPm}PB>*r zf1ENT&DfJi(3BQy>XY!aadUd7I^&}uv&fn?XU{&V%b8_zZ#p%o`>kEdpEi3eE&}f1 z|FN50N7%zH7F$H*l&5IiLww3pGVUS0@|#R6Ul*vzUy;=wC6p)CssV2HxB-T)_<$ZR zt8I^f+ar+n2(+CO)V-$kuPMXnFyrYke^bBNxkbCuYOSEoou>F%kg$VD z++a;QiX~rSQYu1Ii^9@M!qU%MGN!1^Rw}DdmtAGfd8N&5CI9SUSHa+iSN|rPe_0o@ z*`0e_6NqjsL>PhOhKF>Mr_5LWPNX=?xsW4fWtCR-k=vp42!l3zg3X*4`AZ8=YmsR! zI;~w!Y>$OI6WbwH++S^Uiu+#xY$gETptQC7679ZZk)OTDkE#&T6+-5Ch@+03B;4$| zwC-fT-E}LefKBH5tWnnl(dFWpe`nIz8g<;bKK?eH&`KwEhbKKjlF#Z=@*+}8tZBQc z^eQ-`8Ot2AXLW>SkK1x)4Y`+`;bqcLx_af~GHW%L-K}Par)WD*yu(wnohQA_mu1QG z_f5jN_@T2))_=}29bpdd!d4w3!vu$n1TSuEtZ^K<}dAey~d6RRYgSRvwvih zK5EJ*`lc%8g);U799Qm$e~u>{z!UEfN#7001w_hWJoONn_EnQ!M`Wz0GHWeaZJO*t zbDDvuY5oy=S><3c*KT`*w7K~p2d?;{d?N*2pGSHImIBy!kuD} zk0@5Az>mmn`9Z`hF9`MAY-jWAAX``2HhlhMkfTC~3=;;$m zxhG7ugLc`^{cz|ne*rkNn%I`^&m z&ofS7>J056OQd9xzb`Vh8rFnr+!Z4C`JzD&@qNBz&_kw>5Be!yuOMhQaOH?rRl;U= z&XivVYPf%L1BY+m$PFC5fpd40jQRp@dE?^H`fK*|+D1Qoqo3`zh`22x*9F?BV3w9i3e@n_W{H0wNqukx3^S>aoTVpH_S#?T#JL_7v|HRHbMfVoinWy9)Pr6nh zEA@~+h7=9bWog-CSlMK7iKrH$@DCbn=Nb=92Dr(9G#St)PFJ=A*6)A~qrf-{Ok--vo@D#-6^jP8s=N_I_6YuY zFv^V$AwR|61uz!kZ>#6O6|f(p)zfV(X4ps6>meTYk@R{<&w0vt@*9w%#n106djfgO zZ-IwR$`=;Z1lNjr5&;$PK>=qiU$yX%0~vClLk`Ul+q(N~(wCry4q!a4G4*TAQ;204 zSn~|ne-}CaMQ*DOBt~RpeSp0_fI93;AN6H61~^J&;a{PMR#!!64*LCt#Wjc8#Ue7q zL=F2yPy5B}5j(Y*Wgxx^Bpd;WJs|0pF1aBhrG-d6O{5(ROFya4C<)K(w`ZNBvo{!W z_E5QJHGj4`v)xxtTvn@t^&s{^b5|li_e*!3@LPZBRmOE`%)>5ik%0<(jQy`D4 zD%VnQErrxlXf0PW90K|wVAunUd)y`6C4P8`pKYy#SSumdiS6se)Rdf_k~8Nejv>~0 zun0sGOW~V-+JoXP`p6SM^_G0(NlQFs$2{cK{)#VL ze}U{CqI_gly@FjxJPHL(9C?3ahG)W%nJ{#QtByTmTipA(7IzQqY;oTPSYrUbRb+b; zLc9qf-v!&>1ykpI>2tnJexRe4mDn{cPio&oTn7q2{{p{p!ZiHz%!dmJ)=rw-9q4{f z(KViUzo+CHPuj$nZSar}D;2}s=8rYBfASTrdc`f@|6v48oQb@m;a4>Bibh}2tE6=+ zw*{?N;ppFF>NjG!(L` zru~56k1_UJ9B{9I?DGDkVwVu#CA9TQiC!r=3)yEOYCS}+hnR0F z$I-=01k2l#x(qJ8@?y%r+ZwgcEBd%B=0Qko8;H9I;s-%O0g~7YC!I7W59m^=Y3Gv9 z@$mF7hK$>x&RMB7WOlDQ=M0&!h5T!chD5d(&-8Y?NKrd%0r8>A&hm`8jQjVTZYV?yD!v?K!gVyvJ zHGf7ey%E;l2y9M>&k1d90YqB>c|mHwAf+D2=?8M=yV5bpmdARR$3Q08e+c_Z7y0E^ zT#2^ytj^Xu*$CU|p1gb$h&nyQ-vp9Q4{4{T%v1hWr5IdMH+^7LKEza0T<5kChB`e# zCzrpBknjkJ9Mz%6xV11}as5lP;j`U&yQ2*?cVm`@2g_H|6_<{{N zX+*oZ!`a`|`VEBPxZZf)Y&xMePnaxQZPsxFyBmZb5!>d4#Cr*OIlw+7qWXR5TQa6g z?r38}O1WTZFlIOVJvx}ki;GndIBMK0`lw&bsX*tQsA>>@2qZLt#CDMM6eOQ8r_88R zzuVH@Skk}Z8Q+M^f5%~2+iltNM9!Ls+;`5y9c!((gO11)A>p!FWAw|x{liA zC54;Vmdh9xdFdCJ$|LJg@J}COu|l?!1!AZB$GGJw>g9=Vc}jYD(v1RHzK8s?P%*{L zoSsINr%}~?!u2uM>Y<$iu#*Ghm;rvNL0)Rmmt48<6{UY`G28~m$E4|j-Fz*=QVv`D z&DdE8KMUDje*_Z660+6bUag>}1L)}hro`9rku{W^%j>m<$-nK_{rwOc*}(eI%i&SC zJfn|5F)e|yqip}_JxKVXPOL$a&Ki@8>?xb{sTFYAo{020b;fB!W?w{BMQHYq1wX3K z{o%a%Q;tstuc~7|uozd|o#>pW=&^@*&QtQ(LwdkVe-!RsG zPP^3t4sdR?l7=g3WUUEZ%jwwn0R3Kem39Fzon^yH6|n9H*ydn-bFi&MLflu8LxJ|8 zK&sJ~ZuDiYiydECeZv8l8!Z99S3CZ83;z3@A+qaNXzK9K!AsnH<&mtvy#B3?h2t+T zx7yfBe>*wuy3CisgPX-3g9 zZr|8blm39saMohn&X{H(^AVk82C`n&Vdo(HjM8>bPOJ$bkE-m~6;zvo9*{C0m5$r~ zPHx`js;!rS-}6~Ax&gSX<%lEdl4o?8Z_K1$e{8EZ?wvXQI+AeSk$4zRx`HPkvZf3X zsf}T2{Yd(NI%7YU`P7ninaI8f=bT1zui}5UIUCr+_*BTM$HN-=|2DsP7n$#tv#i8r zmlKzc5XD<=RO&je+#aFYOu5F^FJe$5A2f1oti}wtsgX7{+NRdDshuul#H2rGbsk0j ze`<2NkbMzO7t$GyP59#{18kcEiSI(PL~Jh+Q}w>|K^61e*YSZJcW87K3^#z^w@0|@ z9*dytig1F`Ad7kA8@p2@&g+v4Y$^Fv>J23AyC(guE#p0!IiSrN zp|anYayB}0*CT(?e+VZo z_Y^Uo{9@PBao6?nd*Osqd*VJk>9sj|eMHJ5OX^ok+K15e_vVa4mdtnRtjp%?IZe(7 zBKM1PiQ{wYAXs%Ow~GBHRqm<&h?nRTPdwr!ImMIx-|`-jVhtxAE6^%8!^`t9SM;EY z%kc}eaDf&n(4qxg{d5k}&q0Q-e~|GjWcmS_e?XS+ko7x+)d=w#p)=mj3&~Egy;Dp* zkh%xix~4cpeQa!pAUg5Phkt?UwQLDxmkII(XZ7Q`Y2;LW?BAhSc|xFmAg$OoTAICg{ICl;6VfyfKq|NMch-Pkkrsyl=l*yRol z-fr|`)JxRH6OVdH+IZ3iZ`ps9ZxbupxZN-xLzPc3Rj0wlK28{*e+F;Ru(To>gP&l? z6AXRA$s10<`V+9B5f~eRsRwrE_qTxc)slwu86{wtk!+o_JiJ^w6GsN0)M%PTg)! zdxWHqg=g#}GMgM(e;d*4IXvewlDo^fYig~1|Icf17is!g)?b`;Ph74GL<1h;>jKGu zhxDwcOd`LbRNPw8iYl@xyJ=Oi&81@RB%rgN;4Jq$y6y0e2xOxfeZ}n$x@Xnz3^#no zja^pLw8s3Bu{1|m_u8=?5Z)hPyDKCPi^mYAMWe=xNQ#{}y*&bktpUhw;E z#C5!)lTBPMFj3b9(Y2D8rvb4i@VGWK{#$s$h%xarnN(~@zGzA5GN#s$X>Y>Pw;D1k zw3*usS@*E)ua2BcWbTNwm0e^T2w63(JZF8!^MAiNx7SOim5+odw#b$dITWrerc`S= zrNgKLdd>&Wf4NvY6b`>NA)B#fdpU;cZy61>v~dZiu!-(ZBu-*mOj1Zp@+NuJGssOT9YOh_$ z_yg$&e}T+>p<^rC=-=zTl+rEggPwuND{P3Fg`!HmqU(h*ee(alD>)7_d$n2LLH1=d zXPZ9vp>sUBglK_&8g_8)Y4iHy8v9u)U2N4kxBZW}T;ng`QXZ_>uwql&HjDDGSvAa! z2z?2KuJJ)7M_3P=;lpO+uo*qfDPvY{;A*y-f19nAX<(fO*q#7)mA7fouuI&F|hKWNVQWXv2fWStJp-mJ?RjL3Zx_UEv(AvH-{0jrkSJ6K3M+)M0x zJViA;@g7e}4Nv;gNA|zV-vug;b4rLVT-i&jP8nUXXPg2Zobjv;hu4N9y)@d(f0a|4 zbo!5s;S4K-XwsWMp_VaV?KWUt3cO2UTc;qVB;>^)`vD>KLP5V!Fx5)OOV-VHxYFKj z;P**(c6*m0^29Gt$yAY}(5g!14$nX4S2i^Fap}e|hSx@Npy3NuiaTz^)zF@3R}WW5)Xi(`M9Mq_Ol7 z*2^?DB*&*!wtW!sKt&D&+K+}%=T!8=K<1RMqn*uZw(^%0W%aC|Ed`Nl*;stn5;f-) z{XiP?#5cAIb6|_! zx6S@%2it@p%b`_=gkB5&sA2u=Yj;1}?j@??iQBy-RXpiyf$ZPpEmFmKu5R`SRz8AN zPq=N{1L07OH+apJnSW654+{A~p+C4*Of#-;#tqd*W3|yVZZ?mbE%%Mq`$p`I1b-v3 zJpsfMK+gHv=X|Ns5V|ykf9a4r##kr&dbvC@t8-<)_t}5)9g1rAif$IgZ1s(8q2mg| zXn8?j7>a*UmEY067Cz zUDZFtA~NKnZ2xJJTaGd8CA!2D4|_>2@ucs(WdEK1f8`d7YR={Yr6U{~ z@&-d3Yn#);b6TX+f!@_>?rNRBNL&>5=L#`mzPnKZ8@$K%eU z@#RFq{;j3N^yAVb29CWIsFluu|Fd7y)LVW$vz&MvtN_D6>)MD@=WMY z%G5VxUax$5r`i1#4Q5JW1eichrCFxm|Z%7V^a>A zR8wkaka1Ss%}|Q~v~Wlan&1Hx89>niR5QRXIQ(GH->@3q0b{qpxlg!I>r@R@8?g`m z_$je%6cD3;e>@_z9}!aBLG<$grd8$m&IXy5Wozlsx-`1SS!-#rM70Q_E5tEt{9}v5 z;~t^$C+!J)iNqgh(t09!0catY-V>AZ97!Ftrp+Vi-wYWSsLYeLtQsbJEta#6%B^)4 z6VH>+LjUoA_yQOstXCaz54tPK>j-~=yzci^^mD&r7+2mwRex7t7nkoQp%Fe9;bLwH z41cj9dEw}URddnqgk!;@)|s6ib<}JsG?=d#EGHb+TPAE;g5Ooy_Q;8SL1ewu{!m60 z_|vn2%w<2vKDN+2;_|4Q!0&fhJ2?#^*RU~n3(H*3N@5-=V~@~rSCRPFc)})KVjY}R zjwBBoQcCI6%YT-%E?xQ;V@5rhdBL7_n9Oe1=aezI@0}AdLsXS&$xfF3#;6a!jQtyB z0=J^sA{?bYl8roBg1keenB^8dwlT_bjp~8c^))7Os7wILmad&>;OTJWD2W~=H4j;z zQHts7b%rir>_tptgn5hAG8$?fGGKLLydAPtNr;I6vVT9w{#8u9kkhvUnd%V71-6r0 zw){2jate^6?AQ2$M->aBr~G0L`^9cS;=WnqtIP=>9Ettvq;@L#xH@GEp1Q@5cHf-d z5}NT9&g|4>y$;XLx8&TVa<4hRMh!I+@{eC*A+LGQ7FOSTt%Akk*Ld&DYYxj5B>^rt z>cW+kYJXLo!&N~17zVxf0`EDJ+G>MaZO8){y{Fa8g*xHr!1aT$VYkV6&}_P;H_sR? z{dQ}+1IzctKL^=v1Q0g@$W4&FUP7%=(0}Zo#<&fd_1uP6|8TdIi+s@>PkfOtnd3>1c*~kSVN*irB?2I;2Idp6BIn-h}#sQ$IyuoE|4L`;QR^9!@3+Griu zVt*Y9yei1{R76Zl$S*Q`se)<61SysgiALuA()a!R$ipD5?L zCHiE@PlqfQ<7}hgkC&{$G`f?IL2uCjPk&tPEg4u~r~=vlB5xBb4y{lf?$avAY1J5~ zUM_S%F9o2HGn;W59;cCU8Xf0&>J790soC&YZ_G28nj)O-nP#)IJ#!wy&qKC#zQj6T zvNyoq8$gx&(dB+jd7xuI+xBl1EUleB$GDQ2M%HXjTBH6FMqgLO^a-7-FDotaM}I>T z4yhBL6G_vSZ`p+}zJ5yw$Sb?{*; za#VxvL^V6v0Mmf!hc$+$4&x=%)PJQl-=i&cHtR_Zc1VJ+4Yn2f5?6!BGNHXoMfFMP zP9f7Lc2q7N%3hu^+{Kzr4T$Vzt0O1ysM9{t-~3`8g~aZQh?|DvFPakmib(v+lGKPM zU$LZ|#Zn&|((c0Po#u=^_RM)p)=h2p+pwHtVY$bgvec{0Gu1zi(k(EL4Sy^b+u*%i z9a*3qhrC5Mc;Z9ek{b(f@MR?)@=2lMyxgw}xPC|##O_% zx!>y|*Ru8Ye~x;bq4U8{K7V8}jj3gQNG(@pp5}<@N<41+IPoasHk) z$u+BVP%R(Saz5m`6~1mou3OQ|l;#lYL(T#HUWcI+7~f;28eraTv}^~~d=mRA#PcM! zJ_)f`PQH}dZ%C+GIo;yVdsAom3fGwBl#rehGW-1;SJ;;Sb)O|H z22mFo`|%4@WM`<-Wo^vL^T?0caQoQ3t$Wu~bdx8(>nXX(lWp;kSNSSNpk=}3Q%3oe zaTd$IvxlO$M1aTKc+d<4FFZE`p-;J*>O7>MhYYijaTYQa0Dp4DrT@ct0n zB_VN1NNx$TZwaEF$?0currzIinDrWum$fmc2p1A%zaZJ4aSW<|5?szgo=<%EcRc@? zV8hBCcfsWqPtk6k_==}wH&1%UQ}&0v%}>$79qlX>20k+=yEUrMW|y7ZwLudCaEEJ8 zeF=y6g(J@`=zpYDGii0&Nhhi=F&M@P;~4JrqZ^G*IY>2)-IL;P0&VxD#C<7wBEWt_ zMqQTD^+C*@5XV8*Z`|=*s;PEsTy}C*;Os$sF-2YRjJ~Cad8Lf4H^%*?j^AZV*iR)E zSd#WRlFx*u%+aaEnzWDl^ma|gt?AP z-1*qUMwT9K=i>*icDNFk9w#o(M2f$-Ce@f#S#MH}>0GgP!~ykqf*vlothd5%Xyna` zDY817eh1~;xKwI3b*Rl(2}>`q_Jm^3Rrqt2ZDR;=(vRF0V80`y>Vur1tPgf{v$3|v z15}yYryu=bWAxTed$p>^Pn~bTi$h2o+ z&Y6exu=DW6v#{)EVL8vja-TVaOKJGgpr1}QE;b{cvxq$B_B}rOZIz$$+=<9Bk)oCp zhx{OwrG)CO-Ic(6(?ZWZ!E+9gt48=@1hNrBH-BQ9jhOSB{J{119EN<8@r~ZJ&uVU? zEd^oLwlJ(zh8N3iMIl5{2>D5FFAJcq$?4Hx=Ayr&ll>;oJ(r4xrL5spaftMrSww($3NC3)S46TtCQv($@QTr1@_cKNLr&Yy#mP?ipVS>vpOQO&mcJ+hTJDk z_J8pvyfSFjBkMa^FS66!i_G|l*6_qLK9V&&+5aG~Qz(X4NZ4z1${L;1iF|{c7o&SD zU?=B9Dm8GW2C3Abm7GxK-`j9F;fqiB+P2AvZ8CCipnY#3)gz{R#LRJtV}>2%-|4j^ zIILkSLGLt?=YD|`+43L9)T;t%xB5cj-9)jaV%FG)2|_CLw1AjOPgIe)A? zP%AHlE(7s60$k#NxDX0o2t_W0q8GS5IqQLbJurNSjNc(s88DXtOChip0<13t?+dXN zhY-af-N zk$W%qrjO{Qhxn$C+? zfqj65i`7f7j#V)~+(Ii_%wvKj55*OF#?j2-lN zOh)#zA7oq?HRlukSQ_)xH?|auo7cwAm=eaZ#41Bl1(v)wH02|ex-C3ykW7C>XMD3{ zzSU+GlG$sFIme8-x5HUPo`tPiIj&-jrOJI??6s$;%R~IyQ_|%jt$*Unyyfo$6`xmh zx65_Pd7Wxr#}x=IP!%6kar}H<2hZz}c^x{>`HntX-$xtn0OK9^p5?4BKI?0147?JSB zlz13Rx_~C1wWPGbsehZbX=k+QpEMbhSmt(Z)`%{<56S6ea;NmpbQZY^|0LO7L}Z@* zBlGS7rOZoonI|sul3eCVckpFvJmepI6}{Xd&`G=UeVFP!x4-X=70fRk9SeishavC7 z(D&{Q+{JYlCxQ7Su5_hofCp^IfDIks<_V_}{Vk1Q4Q_mhn{MmOqk79a zll8L+J0!#p34d)5{D{LU@@0tqWeByypWflm3VA@2=T)T~(F zH%}^e8dP6HU7gBV465LR3eIXitKlgEd1^#UIZ^5vLjS{HxJDT-8%=$rd5W}rv|7(# z*hzo*Ok4{f|AOoT0aSe;{awtA2_1LX{H21wG>p5Gopso(jeO5q&0nUdbNuKv zl9=^D&VQBLTS0s!NH_!%n?cfTkURrY#&xMOr|5U-KizKDpjK(b{a zv6WNz0_e3e=B3c_M#wfQmq$PPjjp9zbHC!Qy0$-TRsD7~`#q}NzegWmROBh{<4cM> zrPX}dB@g*kiQ*|Y6jZEMo?=vMxY6}#9IEDnYVL1zk#HA@bdhKmC(m7H(yucaE&$^N zV1Jqd<|$yg0<2dSvit!2RDkV_KXJyNysNa|RZ?vsbXy2>R_vHyla}h`zj2DKcvMG3 zepuXkiADACqbq}B218?tkf%PxD!^B~1quB+dm zRbJMp%B?Ouip)?cACz)rtKLgW!llcqooHXrFW21ri zXrQe)h}aB~eL?oVAnIiR{W5@=QaX0A5vFuG!dzxE+Zk)*I~I?%c+?s}bc-zJoqu2K z2{>-X9G@SaFlJ6Xu1)GdlKZKYLt&|#(6rN3dcQs6Af1`7%eonn-D=2bapZP5_ZwW& z?nZw~;uecy+t>)R&HeIgm#1hiPu%4x*~^n|^OF53|0q&StXL#`7gyHURKwg}wu5?T zn-|!|g_#cw{DDErbZ8kDb03=Ym4CQlHq1DJn40zGuO>@5VePeJ??Ui*A+}OKqSTM< z39R!i!rJ?#~d-eJnPWzW1|$$G8LZnovjz`0wUotG}%-hX9_Sy?m9 zXMadO-<9aU<+`;WeMH}Q;*VaEZ#-!}Uv|<%-l|aSTCuIZN2Bawx79C}#@1OuKKDs_ zG;ogw>Cr4_`i(%}2n-v6aU(FD0_Ib|vKLtQ0&JHbzRS;6;ZIcflXF4#xghEqL|=oL zr&7lg)}iJvw;Hz6zXh334$9LL_L)$p_$nO39I+`#(c)z8JV;^$EFIn;6wSnmOB zj|AT%vAqZ&UIdU&CHAKhYLkNAq+rTajz?_ebk2LJA=RjH_2(8LIe!xt_0cE#vm~Zm z7<-PL1G%hCcts_Cu_tXeC%?C(d_hvz>(bUN_z_FSTSw+7lQreY?lk7iT5=DW7Eqbj z?S@yaoZe^c=Ds^KJH!`VmQQfK4&pM z^ziO5n{hJXJV;u$j#L<+Y!ktX8U49oh2>0?b<7C1ll9|0ruNN8K~rmweG{5AjRBY?M-%#yBYz$zf&L^gYzD^7?#B!o zgYd>6TaT3Jk&Oe8x*M>LHyH$b#h`REic(K(}3^90*grG;pLVjv722tx+K&;gFB zcL03{cV)gAn17o&s(vmQKNoCkR1u9TvQA>JlTc3r=qCZp^AJZK8)f^wmZI!-);gx> z$m_oVhLd5cXJxWa%`7|;rX<^nrH_t>uAfEx;p#sbFF!GD-{m@Pv_>t!`|CKx{xYp0ZzpLYl!{f)p z6DC3v|I#J3hb3cO)Bt7g{@vi)T_v8xqVtr?N`zJ zRm`D4N6+F>asHAzteWK;6_a;R~^o4jVCS6YmHxl`75xz(^%hW zum*p;!Qb{$PP~+po5c1_VyZ|?7m1l03dbQf&7WAV0v6@Qr0cbYSr!!t)sS@r7d3M}VUXznMAGoWZ6 zX@25guFX;`B%9qKS@<5U0?}KZxK$u|%afMzWwjpinh?c3zhztbfGQ_Vs?XuBDa#EQ z*t|qZQTPLjd_d6;Tw$yX=*xg%9WbtQ-`95}06!97yAw#<2_!EC*e?Z8cLV9WfqzVs z(lN@C^v%m_9VXdM%e*>r|1WT-SG4bz@mLJ7i%a^8Sv-opTzvH9YItn&a^f)~Q0gY>516Y#`3(yB6bg#D-oh6n{KbfTF)sU#BA_n z+-H-%)#Tg-^8uJPXw7-F1XM*TP$hi=A0K`?PG3!n{CIzB*Jn^JJ@{T9l=^=mP ztC;7OpUml$HFi}#=ISq;pnt&yPE9$dgXeU}oDQAi61M`NF93#l$T$y~N`bi)ST+Fb z27q0a;#Z}%(?P`PAaW$YJ`zAZk<(A)%$oqmZI*P*F8_)eyNiUm?@6n~ul49|FP%sj2l>a%4(Hs-9c<<>bnk*$Unbk${AZ`cyp8}|}e zwLsLt6ITl)9X#28lXpXkqburPAGFF17S&dYoBas`Z@7PPGy?vhMLuZJ58P~NJJ9b# z4cmaRnZ2n#ggS4k4*@J+f#)l1*QCVz0P>x}en(0j38s$(Gk#j)Wcd#1<@R3QPV#rtG$-Ze!B!sM8NxGp>eZ*6Ff3sO+!0oN9gUIVTZaW8d_1 zLt!zvma#qiGWUVwdjioXp7@?X@@XNmddiM^$iFHTAAh*K^%J4op;5hIxUvQU%D8s@ z8wP&EAa5A-4cCF&2K3v2VJ$GO1*RRqyaQN@fwdT5KZN)Xq3t|GoQKGk5PM4qHSJ4J z`!ai!j{U5Wlr8ViZem<(v^M+##m`~p%IZiwU>(K-Z#N_=d_=c+;tC(hEuM6oFDv$t zpYT=O;D0#ikWE>tR;}Yo#P3Yt0p~7C)o`gADOIDTTs325Yh?hK2iS{Z#{u@j4}alj zn^Y2$O7fwf{h=RqQ%T=cGUF=8MOL`*V0o@|h~=P%LFBz(U?S!JG6XM0kfnUB`#1i6 z)>rIzmt7YLM13COB7vmOLptjv6UsZ~isxLLdVhm3@CmHEYf>H1yVf+;+oAme@PwRHb{w*AabqB{xOK! z6+l<|G2=mwi|mE$g%9yo<60rUS@^FTkfdy^q&w?4NPcAg!GIH+HOVX4Ek0K)~AS6tx# zyD+@|Z2^XhA&LrUIcq)3D7WLPU0io*Pz_z+gDTEhG+5vU3v!=A?^Bxl>wWfNTc^tEhX{{&C*h^o$QDG|yA%AX$kY57rUjnIXzVwwK<^bgA^>e|{i!Z~_ z&cZOPh#6GGj-qjonfP@?!gE_<9i4O=PF}A`xkIH68qx+L(!bIfCA!QDRMu%MyPC?m zNax;lN&+YUrA7DCF#cjj(!n~+4tGAW5{6Gc3otZOP@CpmP+1ZUEzbU}`p)OEJqhuzm*EFoF*wwmb!qryxIu*z1F- z&HnUef2LdRXki^@$1?T4$*MOt+9TKh0?WAcFAsF9`iMF9OU${asb78*jq=1_ev^#y zq}#n^6&~^;sbYp}78L506||~Q?|(`{KHIGrdaG@S4)T4#m`Lva!dnYjO1eT4! zx)EU8W%zcP?YSTE+>hK5V&4%$9hA`rWy~d|;|)u?=azLW6|`%I$DLn*#F_s%w7R!E z%KC_7?tG%&OO)>^uJ@AUdrBXB%Gy2T2mKY#IHl-(sIuFv%0pd5^P?IZTYs7)M&UdZ z$wSdRE*<*;>3=|mImkE%nKl6P24GnWtZMcVC$C?{c^HSYOj-0(+YZ8!CVkJ z3RpsMY}CeSW*~e9vduum z3`EXA_8Ewpf#?~CnSmTLYy|CFrrd=vN4fv$Kk=LV-QTakKmPt77Q073ZGk?*(upJP zbfVl-H18oU_ms?gID_cF$Sb9a#ua^%r#j_P+*SWwFp+{#aD*cioqrKYG#u8v^0_G-Q*#)e-0M;IWw+Gl>_!2LC$wq&Bqd#?3PG6NXYXcnzSgF^M z8{^;)qQK!gh+s}h43sIz*{T|Kkb30YuqN_Y{mAB+7PulDy zEAWt?mMglT73ABhoPV;bHrZU)^eU`SvlnRQT9D;@ye`l-BqdJxk$Fn{E)~@iK);bQr=^blthqFME$hA-=5?Us4kO!OoOLbznT3AuX8Z9yhF=g;oM03g7Qp!b0flK>PyqV@06HrME&u=k diff --git a/tile-join.cpp b/tile-join.cpp index c70fb501f..18652271a 100644 --- a/tile-join.cpp +++ b/tile-join.cpp @@ -744,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, false, NULL); + 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, false); return ret; } diff --git a/tile.cpp b/tile.cpp index 4e7cc830f..bdd9df56e 100644 --- a/tile.cpp +++ b/tile.cpp @@ -111,7 +111,11 @@ struct coalesce { } }; -struct preservecmp { +static struct preservecmp { + bool operator()(const std::vector &a, const std::vector &b) { + return operator()(a[0], b[0]); + } + bool operator()(const struct coalesce &a, const struct coalesce &b) { return a.original_seq < b.original_seq; } @@ -303,6 +307,10 @@ static mvt_value coerce_double(mvt_value v) { } struct ordercmp { + bool operator()(const std::vector &a, const std::vector &b) { + return operator()(a[0], b[0]); + } + bool operator()(const struct coalesce &a, const struct coalesce &b) { for (size_t i = 0; i < order_by.size(); i++) { mvt_value v1 = coerce_double(find_attribute_value(&a, order_by[i].name)); @@ -331,6 +339,66 @@ struct ordercmp { } } ordercmp; +std::vector> assemble_multiplier_clusters(std::vector &features) { + std::vector> clusters; + + if (retain_points_multiplier == 1) { + for (auto const &feature : features) { + std::vector cluster; + cluster.push_back(feature); + clusters.push_back(cluster); + } + } else { + for (auto const &feature : features) { + bool is_cluster_start = false; + + for (size_t i = 0; i < feature.full_keys.size(); i++) { + if (feature.full_keys[i] == "tippecanoe:retain_points_multiplier_first") { + is_cluster_start = true; + break; + } + } + + if (is_cluster_start) { + clusters.push_back(std::vector()); + } + + clusters.back().push_back(feature); + } + } + + return clusters; +} + +std::vector disassemble_multiplier_clusters(std::vector> &clusters) { + std::vector out; + + for (auto &cluster : clusters) { + // fix up the attributes so the first feature of the multiplier cluster + // gets the marker attribute + for (size_t i = 0; i < cluster.size(); i++) { + for (size_t j = 0; j < cluster[i].full_keys.size(); j++) { + if (cluster[i].full_keys[j] == "tippecanoe:retain_points_multiplier_first") { + cluster[0].full_keys.push_back(cluster[i].full_keys[j]); + cluster[0].full_values.push_back(cluster[i].full_values[j]); + + cluster[i].full_keys.erase(cluster[i].full_keys.begin() + j); + cluster[i].full_values.erase(cluster[i].full_values.begin() + j); + + i = cluster.size(); // break outer + break; + } + } + } + + for (auto const &feature : cluster) { + out.push_back(feature); + } + } + + return out; +} + void rewrite(drawvec &geom, int z, int nextzoom, int maxzoom, long long *bbox, unsigned tx, unsigned ty, int buffer, int *within, std::atomic *geompos, compressor **geomfile, const char *fname, signed char t, int layer, signed char feature_minzoom, int child_shards, int max_zoom_increment, long long seq, int tippecanoe_minzoom, int tippecanoe_maxzoom, int segment, unsigned *initial_x, unsigned *initial_y, std::vector &metakeys, std::vector &metavals, bool has_id, unsigned long long id, unsigned long long index, unsigned long long label_point, long long extent) { if (geom.size() > 0 && (nextzoom <= maxzoom || additional[A_EXTEND_ZOOMS] || extend_zooms_max > 0)) { int xo, yo; @@ -2379,6 +2447,33 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch coalesced_area = 0; } + if (retain_points_multiplier > 1) { + // mapping from input sequence to current sequence within this tile + std::vector> feature_sequences; + + for (size_t i = 0; i < partials.size(); i++) { + feature_sequences.emplace_back(partials[i].original_seq, i); + } + + // tag each feature with its sequence number within the tile + // if the tile were sorted by input order + // + // these will be smaller numbers, and avoid the problem of the + // original sequence number varying based on how many reader threads + // there were reading the input + std::sort(feature_sequences.begin(), feature_sequences.end()); + for (size_t i = 0; i < feature_sequences.size(); i++) { + size_t j = feature_sequences[i].second; + + serial_val val; + val.type = mvt_double; + val.s = std::to_string(i); + + partials[j].full_keys.push_back("tippecanoe:retain_points_multiplier_sequence"); + partials[j].full_values.push_back(val); + } + } + std::sort(shared_nodes.begin(), shared_nodes.end()); for (size_t i = 0; i < partials.size(); i++) { @@ -2629,11 +2724,21 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch } if (prevent[P_INPUT_ORDER]) { - std::sort(layer_features.begin(), layer_features.end(), preservecmp); + auto clustered = assemble_multiplier_clusters(layer_features); + for (auto &c : clustered) { + std::sort(c.begin(), c.end()); + } + std::sort(clustered.begin(), clustered.end(), preservecmp); + layer_features = disassemble_multiplier_clusters(clustered); } if (order_by.size() != 0) { - std::sort(layer_features.begin(), layer_features.end(), ordercmp); + auto clustered = assemble_multiplier_clusters(layer_features); + for (auto &c : clustered) { + std::sort(c.begin(), c.end()); + } + std::sort(clustered.begin(), clustered.end(), ordercmp); + layer_features = disassemble_multiplier_clusters(clustered); } if (z == maxzoom && limit_tile_feature_count_at_maxzoom != 0) { diff --git a/version.hpp b/version.hpp index 6549d311f..3a5f6c548 100644 --- a/version.hpp +++ b/version.hpp @@ -1,6 +1,6 @@ #ifndef VERSION_HPP #define VERSION_HPP -#define VERSION "v2.41.0" +#define VERSION "v2.41.1" #endif